a b c d e f g h i j k l m n o p q r s t u v w x y z
Description: OAuth 2.0 Authorization Protocol
Implementation of the OAuth 2.0 draft.
.
The main entry point is `oauth2-auth-and-store' which will return a token
structure, which contains information needed for OAuth2 authentication,
e.g. access_token, refresh_token, etc.
.
If the token needs to be refreshed, call `oauth2-refresh-access' on the token
and it will be refreshed with a new access_token. The code will also store
the new value of the access token for reuse.
Description: OAuth 2.0 Authorization Protocol
Implementation of the OAuth 2.0 draft.
.
The main entry point is `oauth2-auth-and-store' which will return a token
structure. This token structure can be then used with
`oauth2-url-retrieve-synchronously' or `oauth2-url-retrieve' to retrieve
any data that need OAuth authentication to be accessed.
.
If the token needs to be refreshed, the code handles it automatically and
store the new value of the access token.
--- 316943 Thu Jan 1 00:00:00 1970
+++ 311453 Thu Jan 1 00:00:00 1970
@@ -2,9 +2,9 @@
Implementation of the OAuth 2.0 draft.
.
The main entry point is `oauth2-auth-and-store' which will return a token
- structure, which contains information needed for OAuth2 authentication,
- e.g. access_token, refresh_token, etc.
+ structure. This token structure can be then used with
+ `oauth2-url-retrieve-synchronously' or `oauth2-url-retrieve' to retrieve
+ any data that need OAuth authentication to be accessed.
.
- If the token needs to be refreshed, call `oauth2-refresh-access' on the token
+ If the token needs to be refreshed, the code handles it automatically and
- and it will be refreshed with a new access_token. The code will also store
+ store the new value of the access token.
- the new value of the access token for reuse.