Last updated
Last updated
Before continuing make sure you've followed the
If you are unfamiliar with token gating, we recommend reading one of the other token gating guides first
To understand the use cases for incremental token gating, read the
You can use Picket to token gate anything. Incremental token gating, also know as , allows you to token gate after the user is logged in. If the user meets the token ownership requirements, we'll automatically handle updating their access token for you. This makes all future checks for the same token ownership lightning fast.
Once the user is logged, you can authorize for specific requirements. This can be used to prevent users from clicking a button or accessing page if they don't have certain tokens.
You successfully logged in a user and token gated content!
Every time a user is successfully authorized for a new requirement, their access token will automatically be updated to reflect it.
Congrats ๐ your user is now successfully logged in. After authenticated/authorizing a user, you get an access token. You can use this access token to make secure requests to your backend. Read more in the .
A guide to start incremental token gating anything in minutes.