Как мне авторизовать клиента без использования антивируса Avast антивируса Avast что OAuth2 рабочего процесса?


У меня уже есть access_token и refresh_token, но я не могу придумать способ создать авторизованный клиент gdata, не пройдя через весь рабочий процесс генерации токенов в gdata.

3 3

3 ответа:

Так что я наконец-то заработал. Вот как я это сделал:

    client = gdata.contacts.client.ContactsClient()
    credentials = gdata.gauth.OAuth2Token(client_id = 'client_id',
                                          client_secret = 'client_secret',
                                          scope = 'https://www.google.com/m8/feeds/',
                                          user_agent = auth.user_agent, # This is from the headers sent to google when getting your access token (they don't return it)
                                          access_token = auth.access_token,
                                          refresh_token = auth.refresh_token)

    credentials.authorize(client)
    contacts = client.get_contacts()

Попробуйте это:

import httplib2
from oauth2client.client import OAuth2Credentials

credentials = OAuth2Credentials('access_token', client_id, client_secret, 'refresh_token', 'token_expiry','token_uri','user_agent')
# the client_id and client_secret are the ones that you receive which registering the App 
# and the token_uri is the Redirect url you register with Google for handling the oauth redirection
# the token_expiry and the user_agent is the one that you receive when exchange the code for access_token
http = httplib2.Http()
http = credentials.authorize(http)
service = build('analytics', 'v3', http=http) # this will give you the service object which you can use for firing API calls

Gdata позволяет выполнять аутентификацию с использованием пользовательских данных, например. имя пользователя / пароль... вот код snipet из gdata python api /gdata-2.0.18/samples/docs/docs_example.py файл, который поставляется с api

Класс DocsSample (object): """Объект DocsSample демонстрирует ленту списка документов."""

Def init (self, email, password): """Конструктор для объекта DocsSample.

Takes an email and password corresponding to a gmail account to
demonstrate the functionality of the Document List feed.

Args:
  email: [string] The e-mail address of the account to use for the sample.
  password: [string] The password corresponding to the account specified by
      the email parameter.

Returns:
  A DocsSample object used to run the sample demonstrating the
  functionality of the Document List feed.
"""
source = 'Document List Python Sample'
self.gd_client = gdata.docs.service.DocsService()
self.gd_client.ClientLogin(email, password, source=source)

# Setup a spreadsheets service for downloading spreadsheets
self.gs_client = gdata.spreadsheet.service.SpreadsheetsService()
self.gs_client.ClientLogin(email, password, source=source)

Если вы вызываете это как {python ./docs_example.py --имя пользователя пользователя --pw пароль} он пропустит запрос, но он попросит вас об этом, если вы этого не сделаете. однако это обесценивается, но все еще работает в большинстве ситуаций за пределами сетей, которые непосредственно работают с Google, поскольку это часто требует oauth2. Тем не менее, у него есть недостатки безопасности, в частности область действия и плохая защита паролем, поэтому он не рекомендуется...но это должно ответить на ваш вопрос немного лучше...