Сериализация и десериализация oauth2client.client.OAuth2Credentials - PullRequest
0 голосов
/ 21 сентября 2019

Итак, у меня есть объект, который представляет собой учетные данные из авторизации OAuth2 для веб-службы.Я хочу сохранить учетные данные пользователей, чтобы я мог продолжать использовать их в будущем.Я использую Django.

Объект: <oauth2client.client.OAuth2Credentials object at 0x104b47310>

Я не уверен, как я могу привести в соответствие учетные данные и затем построить объект учетных данных обратно из строки.

Пример кода по запросу:

#!/usr/bin/python

import httplib2

from apiclient import errors
from apiclient.discovery import build
from oauth2client.client import OAuth2WebServerFlow


# Copy your credentials from the console
CLIENT_ID = 'YOUR_CLIENT_ID'
CLIENT_SECRET = 'YOUR_CLIENT_SECRET'

# Check https://developers.google.com/webmaster-tools/search-console-api-original/v3/ for all available scopes
OAUTH_SCOPE = 'https://www.googleapis.com/auth/webmasters.readonly'

# Redirect URI for installed apps
REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob'

# Run through the OAuth flow and retrieve credentials
flow = OAuth2WebServerFlow(CLIENT_ID, CLIENT_SECRET, OAUTH_SCOPE, REDIRECT_URI)
authorize_url = flow.step1_get_authorize_url()
print 'Go to the following link in your browser: ' + authorize_url
code = raw_input('Enter verification code: ').strip()
credentials = flow.step2_exchange(code)

# Create an httplib2.Http object and authorize it with our credentials
http = httplib2.Http()
http = credentials.authorize(http)

webmasters_service = build('webmasters', 'v3', http=http)

# Retrieve list of properties in account
site_list = webmasters_service.sites().list().execute()

# Filter for verified websites
verified_sites_urls = [s['siteUrl'] for s in site_list['siteEntry']
                       if s['permissionLevel'] != 'siteUnverifiedUser'
                          and s['siteUrl'][:4] == 'http']

# Printing the URLs of all websites you are verified for.
for site_url in verified_sites_urls:
  print site_url
  # Retrieve list of sitemaps submitted
  sitemaps = webmasters_service.sitemaps().list(siteUrl=site_url).execute()
  if 'sitemap' in sitemaps:
    sitemap_urls = [s['path'] for s in sitemaps['sitemap']]
    print "  " + "\n  ".join(sitemap_urls)

1 Ответ

0 голосов
/ 21 сентября 2019

Вы можете использовать модуль pickle для сериализации и десериализации объектов Python.Вот непроверенный код:

import pickle

# Store OAuth2Credentials to a file
with open(FILENAME, 'wb') as credentials_file:
    pickle.dump(credentials, credentials_file)

# Read OAuth2Credentials from file
with open(FILENAME, 'rb') as credentials_file:
   credentials = pickle.load(credentials_file)


...