HomeSort by relevance Sort by last modified time
    Searched refs:oauth2 (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
imap.py 25 import oauth2 namespace
33 if consumer is not None and not isinstance(consumer, oauth2.Consumer):
36 if token is not None and not isinstance(token, oauth2.Token):
40 lambda x: oauth2.build_xoauth_string(url, consumer, token))
smtp.py 25 import oauth2 namespace
34 if consumer is not None and not isinstance(consumer, oauth2.Consumer):
37 if token is not None and not isinstance(token, oauth2.Token):
41 base64.b64encode(oauth2.build_xoauth_string(url, consumer, token)))
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 12 import oauth2 namespace
55 oauth_token = oauth2.Token(**{
60 oauth_consumer = oauth2.Consumer(**{
66 client = oauth2.Client(oauth_consumer, oauth_token)

Completed in 2521 milliseconds