0% found this document useful (0 votes)
17 views

Authentication in The Admin Module

This document outlines basic authentication in an admin module using tokens. A browser sends a username and password to a server to get an access token. The browser then uses that bearer token to access protected data on the server. The browser can also revoke a specific token by sending it to the server.

Uploaded by

Ayman
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

Authentication in The Admin Module

This document outlines basic authentication in an admin module using tokens. A browser sends a username and password to a server to get an access token. The browser then uses that bearer token to access protected data on the server. The browser can also revoke a specific token by sending it to the server.

Uploaded by

Ayman
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Authentication in the

Admin Module
Basic Authentication

Browser Server
/token (Username/password)
{“access_token”: “5b68939932f2....”

Bearer 5b68939932f2…
Protected data

/revoke (token 5b68939932f2…)


success

You might also like