You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
Rick Mak edited this page Apr 7, 2017
·
1 revision
authenticated request
An authenticated request is a request that the client supplies access token
as part of the request parameter, so that the request is associated to
a user account. Request made this way is considered by the system to be
performed on behalf of a user.
An action requiring authenticated request means that access token is
to be supplied for all requests. This is usually done by the including
a access_token parameter in the request body.
access token
An access token is an opaque string used by the system to identify the
client and the user account of each request.
Access token is obtained by calling the auth:login action. Each user
may have a number of different access tokens created each time when
the client calls the auth:login action.