|
本帖最后由 Qter 于 2020-8-3 14:34 编辑
https://developers.google.com/gmail/imap
OAuth2DotPyRunThrough
https://github.com/google/gmail-oauth2-tools/wiki/OAuth2DotPyRunThrough
Access tokens expire after one hour. Typically an application will save the refresh token permanently, and generate new access tokens as needed. oauth2.py can issue a new access token from a valid refresh token.
- Refreshing an access token
- Access tokens periodically expire and become invalid credentials for a related API request. You can refresh an access token without prompting the user for permission (including when the user is not present) if you requested offline access to the scopes associated with the token.
- To refresh an access token, your application sends an HTTPS POST request to Google's authorization server (https://oauth2.googleapis.com/token) that includes the following parameters:
- Fields
- client_id The client ID obtained from the API Console.
- client_secret The client secret obtained from the API Console. (The client_secret is not applicable to requests from clients registered as Android, iOS, or Chrome applications.)
- grant_type As defined in the OAuth 2.0 specification, this field must contain a value of refresh_token.
- refresh_token The refresh token returned from the authorization code exchange.
- The following snippet shows a sample request:
- POST /token HTTP/1.1
- Host: oauth2.googleapis.com
- Content-Type: application/x-www-form-urlencoded
- client_id=your_client_id&
- client_secret=your_client_secret&
- refresh_token=refresh_token&
- grant_type=refresh_token
- As long as the user has not revoked the access granted to the application, the token server returns a JSON object that contains a new access token. The following snippet shows a sample response:
- {
- "access_token": "1/fFAGRNJru1FTz70BzhT3Zg",
- "expires_in": 3920,
- "scope": "https://www.googleapis.com/auth/drive.metadata.readonly",
- "token_type": "Bearer"
- }
- Note that there are limits on the number of refresh tokens that will be issued; one limit per client/user combination, and another per user across all clients. You should save refresh tokens in long-term storage and continue to use them as long as they remain valid. If your application requests too many refresh tokens, it may run into these limits, in which case older refresh tokens will stop working.
复制代码
|
|