-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Managed incentivized links #7438
base: main
Are you sure you want to change the base?
Conversation
Incoming screenshots of the dev portal and feature. |
Co-authored-by: Lala Sabathil <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks so much for updating the building an activity page! I have a few nits, update them if you agree with them otherwise it looks good!
Incentivized sharing can help grow your Activity through network effects. This guide covers implementing a reward system for users who share links and those who click them. | ||
Incentivized sharing can help grow your Activity through network effects. You can use links in several different ways such as: | ||
|
||
1. **Referral links.** Users can copy referral links inside your Activity, which include their Discord user ID (`https://discord.com/activities/<your Activity ID>?referrer_id=123456789`), and they can send to their friends. If their friend accepts and starts playing your game, then you gift the referrer something inside your game. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These don't need to be numbered since they aren't really steps. Just bullets should be fine!
1. In your Application's portal, visit the Custom Links page under the Activities heading in the navigation pane. | ||
2. On the Custom Links page, click `Create New` to create a new link. | ||
3. You will need to upload an image with an aspect ratio of 43:24. | ||
4. Title, and description is also required. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think "Title and description are also required." reads better
2. On the Custom Links page, click `Create New` to create a new link. | ||
3. You will need to upload an image with an aspect ratio of 43:24. | ||
4. Title, and description is also required. | ||
5. All other fields are optional but you are able to customize the primary button's label as well as a custom_id to the link. An explicit `custom_id` query parameter on the link itself will always override the set custom_id. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the last custom_id
in this sentence should be in a code block too
|
||
#### Editing a Link | ||
|
||
1. Click on a row opens up the modal with all of the data loaded in ready for your edits. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Click on a row to open up the modal with all of the data loaded in ready for your edits." reads better
#### Editing a Link | ||
|
||
1. Click on a row opens up the modal with all of the data loaded in ready for your edits. | ||
2. Let's change the description to something else. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Change the description to something else." reads better
|
||
1. Click on the trash icon on the row of the link you're trying to delete. | ||
2. You'll have a confirm dialog pop up. | ||
3. Deleting is irreversible and immediate. Ensure that your link isn't in active use before deleting and/or that your activity gracefully handles any click-throughs from the link. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might look better as a warning, not a step:
> warn
> Deleting is irreversible and immediate. Ensure that your link isn't in active use before deleting and/or that your activity gracefully handles any click-throughs from the link.
No description provided.