Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having trouble using Oauth 2.0 with Google apps. I am trying access my google docs using the following code (I have replaced the consumer key, consumer secret, and requester id with asterisks):

import gdata.contacts
import gdata.contacts.service
import gdata.docs
import gdata.docs.service


CONSUMER_KEY = '***********'
CONSUMER_SECRET = '****************************'
SIG_METHOD = gdata.auth.OAuthSignatureMethod.HMAC_SHA1

requestor_id = '************'

# Google Documents List Data API ===============================================
docs = gdata.docs.service.DocsService()
docs.SetOAuthInputParameters(
    SIG_METHOD, CONSUMER_KEY, consumer_secret=CONSUMER_SECRET,
    two_legged_oauth=True, requestor_id=requestor_id)

# POST - upload a document
print "\nUploading document to %s's Google Documents account:" % (requestor_id,)
ms = gdata.MediaSource(
    file_path='test.txt',
    content_type=gdata.docs.service.SUPPORTED_FILETYPES['TXT'])

# GET - fetch user's document list
entry = docs.UploadDocument(ms, 'Company Perks')
print 'Document now accessible online at:', entry.GetAlternateLink().href

print "\nList of Google Documents for %s" % (requestor_id,)
feed = docs.GetDocumentListFeed()
for entry in feed.entry:
  print entry.title.text

Whenever I run this code, it gives me the following error:

Token invalid - Invalid token: Secure token but no target found.

Why would it be doing this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.