Skip to content
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

Edit authentication workflow web #1581

Open
wants to merge 4 commits into
base: staging
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions shared/video-sdk/authentication-workflow/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ProjectImplement from '@docs/shared/video-sdk/authentication-workflow/pro
import ProjectTest from '@docs/shared/video-sdk/authentication-workflow/project-test/index.mdx';
import Reference from '@docs/shared/video-sdk/authentication-workflow/reference/index.mdx';

Authentication is the process of validating the identity of each user before they access a system. <Vg k="COMPANY" /> uses digital tokens to authenticate users and their privileges. A token is a string used to verify user privileges when joining a channel. When a user connects to <Vg k="COMPANY" /> and passes in the token, the server verifies the user's identity and permissions based on the information in the token.
Authentication is the process of validating the identity of each user before they access a system. <Vg k="COMPANY" /> uses digital [tokens](./video-calling/reference/glossary?#token) to authenticate users and their privileges. A token is a string used to verify user privileges when joining a [channel](./video-calling/reference/glossary?#channel). When a user connects to <Vg k="COMPANY" /> and passes in the token, the server verifies the user's identity and permissions based on the information in the token.

## Understand the tech

Expand Down Expand Up @@ -37,8 +37,8 @@ Before starting, ensure that you have:
* Implemented the [SDK quickstart](../get-started/get-started-sdk) in your project.

* The following information from [Agora Console](https://console.agora.io/v2):
* App ID: A unique string generated by Agora that identifies your project.
* App Certificate: A string generated by Agora Console to enable token authentication. To obtain the App Certificate for your project, enable primary certificate.
* [App ID](./video-calling/reference/glossary?#app-id): A unique string generated by Agora that identifies your project.
* [App Certificate](./video-calling/reference/glossary?#app-certificate): A string generated by Agora Console to enable token authentication. To obtain the App Certificate for your project, enable primary certificate.

</ProductWrapper>

Expand Down Expand Up @@ -287,9 +287,10 @@ if __name__ == "__main__":
</TabItem>
</Tabs>

Refer to this [quick guide](#manually-deploy-a-token-generator-locally) on how to deploy a token generator locally.

<Admonition type="info" style="Information">
The code samples presented on this page use an integer user ID to generate a token. To use a string user ID, refer to the [Token Generator code repository](https://github.com/AgoraIO/Tools/tree/master/DynamicKey/AgoraDynamicKey) to view the corresponding code sample in the desired language.
The code samples presented on this page use an integer [user ID](./video-calling/reference/glossary?#user-iduid) to generate a token. To use a string user ID, refer to the [Token Generator code repository](https://github.com/AgoraIO/Tools/tree/master/DynamicKey/AgoraDynamicKey) to view the corresponding code sample in the desired language.
</Admonition>

<ProjectImplement />
Expand Down
Loading