getAccessToken
Utility function designed for retrieving authorization tokens within a component. It ensures that your React components have the necessary authentication state, either through OAuth or a personal access token.
getAccessToken
must be used within components that are nested inside a component wrapped with withAccessToken
. Otherwise, the function will fail with an error.
Signature
Return
The function returns an object containing the following properties:
token
: A string representing the access token.type
: An optional string that indicates the type of token retrieved. It can either beoauth
for OAuth tokens orpersonal
for personal access tokens.
Example
Last updated