Tokens & Authentication
Confused about "Tokens & Authentication"?
Let us know how we can improve our documentation:
- On This Page:
- Authentication vs Authorization
- Token Providers
- Generating Tokens
- Setting Automatic Token Expiration
- Manual Token Expiration
- Token Revocation by User
- Undoing the revoke
- Token Revocation by Application
- Undoing the revoke
- Adding iat claim to token
- Developer Tokens
- Manually Generating Tokens
- How to Refresh Expired Tokens
Authentication vs Authorization
Copied!Confused about "Authentication vs Authorization"?
Let us know how we can improve our documentation:
Stream uses JWT (JSON Web Tokens) to authenticate chat users, enabling them to login. Knowing whether a user is authorized to perform certain actions is managed separately via a role based permissions system.
Token Providers
Copied!Confused about "Token Providers"?
Let us know how we can improve our documentation:
A concept we will refer to throughout the docs is a Token Provider. At a high level, the Token Provider is an endpoint on your server that can perform the following sequence of tasks:
Receive information about a user from the front end.
Validate that user information against your system.
Provide a User-ID corresponding to that user to the server client's token creation method.
Return that token to the front end.
User Tokens can only be safely generated from a server. This means you will need to implement a Token Provider prior to deploying your application to production. To conduct development before implementing a Token Provider, you will need to disable token authentication.
Generating Tokens
Copied!Confused about "Generating Tokens"?
Let us know how we can improve our documentation:
You can generate tokens on the server by creating a Server Client and then using the Create Token method.
If generating a token to use client side, the token must include the userID claim in the token payload, where as server tokens do not. When using the create token method, pass the user_ID parameter to generate a client-side token.
Setting Automatic Token Expiration
Copied!Confused about "Setting Automatic Token Expiration"?
Let us know how we can improve our documentation:
By default, user tokens are valid indefinitely. You can set an expiration to tokens by passing it as the second parameter. The expiration should contain the number of seconds since Unix epoch (00:00:00 UTC on 1 January 1970).
Manual Token Expiration
Copied!Confused about "Manual Token Expiration"?
Let us know how we can improve our documentation:
Token Revocation is a way to manually expire tokens for a single user or for many users by setting a revoke_tokens_issued_before
time, and any tokens issued before this will be considered expired and will fail to authenticate. This can be reversed by setting the field to null.
Token Revocation by User
Copied!Confused about "Token Revocation by User"?
Let us know how we can improve our documentation:
You can revoke all tokens that belong to certain user or list of users
Note: Your tokens must include the iat
(issued at time) claim, which will be compared to the time in the revoke_tokens_issued_before
field to determine whether the token is valid or expired. Tokens which have no iat
will be considered valid.
Undoing the revoke
Copied!Confused about "Undoing the revoke"?
Let us know how we can improve our documentation:
To undo user-level token revocation, you can simply set revocation date to `null`:
Token Revocation by Application
Copied!Confused about "Token Revocation by Application"?
Let us know how we can improve our documentation:
It is possible to revoke tokens for all users of an application. This should be used with caution as it will expire every user’s token, regardless of whether the token has an iat
claim
Undoing the revoke
Copied!Confused about "Undoing the revoke"?
Let us know how we can improve our documentation:
To undo app-level token revocation, you can simply set revocation date to `null`:
Adding iat claim to token
Copied!Confused about "Adding iat claim to token"?
Let us know how we can improve our documentation:
By default, user tokens generated through the createToken function do not contain information about time of issue. You can change that by passing the issue date as the third parameter while creating tokens. This is a security best practice, as it enables revoking tokens
Developer Tokens
Copied!Confused about "Developer Tokens"?
Let us know how we can improve our documentation:
For development applications, it is possible to disable token authentication and use client-side generated tokens or a manually generated static token. Disabling auth checks is not suitable for a production application and should only be done for proofs-of-concept and applications in the early development stage. To enable development tokens, you need to change your application configuration.
On the Dashboard:
Select the App you want to enable developer tokens on
Click App name to enter the Chat Overview
Scroll to the Authentication section
Toggle Disable Auth Checks
Click Save
This disables the authentication check, but does not remove the requirement to send a token. Send either a client generated development token, or manually create one and hard code it into your application.
Manually Generating Tokens
Copied!Confused about "Manually Generating Tokens"?
Let us know how we can improve our documentation:
You can generate a token manually using the JWT generator.
If you need to test your app before you have a Token Provider and you don't want to enable developer tokens, you can hardcode tokens from this generator into your app for testing.
Please enter a Secret and Stream User ID
How to Refresh Expired Tokens
Copied!Confused about "How to Refresh Expired Tokens"?
Let us know how we can improve our documentation:
If you're using tokens with an expiration date you'll want to update tokens as soon as a token exception occurs. Our React, RN, iOS, Android and Flutter libraries have built-in support for this.
Here is the regular flow to handle tokens with expiration with a token provider:
Chat is initialized using the API Key and the token provider
The Chat client will use the token provider to fetch the token when
connectUser
is calledWhen the token expires, the API will return a specific Authentication error code
The client will pause API requests and use the token provider to obtain a fresh token
The token provider returns a new token (ie. from your backend)
Chat client replaces the old token with the new one and use it for all waiting and future API calls
A token provider is a function or class that you implement and that is responsible for requesting a new token from your own login infrastructure.
The most common token provider implementation does an HTTP call to your backend with the ID of the user as well as a valid session id or secret needed to authenticate them.