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.
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