๐ Getting Started with SSO
How to connect to OAuth 2.0
Firstly, it's important to know that the oAuth OpenID SSO presented here allows Edusign resources (students, teachers, administrators) to connect to your platform via a โConnect with Edusignโ button.
This oAuth SSO is not intended to connect to our API. To use our API, you need to generate an API bearer token in your administrator area. (see here)
This documentation describes how to connect to the OAuth 2.0 authorization server (RFC 6749), with support for OpenID Connect (OIDC) and many other features and standards offered by Edusign.
Discover authentication API routes
The authentication API is available at the following url: https://auth.edusign.com/
It is possible to authenticate a user as a student, teacher or admin.
To do this, you'll need to use the following base urls:
- For a student: https://auth.edusign.com/student
- For a teacher: https://auth.edusign.com/professor
- For an admin: https://auth.edusign.com/admin
If you enter <https://auth.edusign.com/auth> directly, you'll be taken to an interface where you can choose who you are. Very useful when you want a single "Connect with Edusign" button.
Here is the list of routes required for authentication, available for student, professor and admin:
- Authorization:
/auth
- Token revocation (logout):
/token/revocation
- Token recovery:
/token
, - Logged-in user information:
/me
You can find further information and routes on the urls :
Updated about 2 months ago