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've been trying to make this script work with not much success. May I add, I went through the whole setup and authorization process with no problems. Once the script prompts me to open the link in the browser and click the 'Allow' button, I get errors (see below):

# Include the Dropbox SDK libraries
from dropbox import client, rest, session

# Get your app key and secret from the Dropbox developer website
APP_KEY = 'iqxjea6s7ctxv9j'
APP_SECRET = 'npac0nca3p3ct9f'

# ACCESS_TYPE should be 'dropbox' or 'app_folder' as configured for your app
ACCESS_TYPE = 'dropbox'

sess = session.DropboxSession(APP_KEY,APP_SECRET, ACCESS_TYPE )

request_token = sess.obtain_request_token()

# Make the user sign in and authorize this token
url = sess.build_authorize_url(request_token)
print "url:", url
print "Please authorize in the browser. After you're done, press enter."
raw_input()

# This will fail if the user didn't visit the above URL and hit 'Allow'
access_token = sess.obtain_access_token(request_token)

client = client.DropboxClient(sess)
print "linked account:", client.account_info()

f = open('t.txt')
response = client.put_file('/magnum-opus.txt', f)
print "uploaded:", response

folder_metadata = client.metadata('/')
print "metadata:", folder_metadata

f, metadata = client.get_file_and_metadata('/magnum-opus.txt',rev='362e2029684fe')
out = open('magnum-opus.txt', 'w')
out.write(f)
print(metadata)

and this is the error:

url: https://www.dropbox.com/1/oauth/authorize?oauth_token=puetsb17t1g2htd
Please authorize in the browser. After you're done, press enter.

linked account: {'referral_link': 'https://www.dropbox.com/referrals/NTMxMzM4NjY5', 'display_name': 'Greg Lorincz', 'uid': 3133866, 'country': 'GB', 'quota_info': {'shared': 78211, 'quota': 28185722880, 'normal': 468671581}, 'email': 'alkopop79@gmail.com'}
Traceback (most recent call last):
  File "dropb.py", line 28, in <module>
    response = client.put_file('/magnum-opus.txt', f)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/dropbox-1.4-py2.7.egg/dropbox/client.py", line 149, in put_file
    return RESTClient.PUT(url, file_obj, headers)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/dropbox-1.4-py2.7.egg/dropbox/rest.py", line 146, in PUT
    return cls.request("PUT", url, body=body, headers=headers, raw_response=raw_response)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/dropbox-1.4-py2.7.egg/dropbox/rest.py", line 113, in request
    raise ErrorResponse(r)
dropbox.rest.ErrorResponse: [403] 'The provided token does not allow this operation'

Any ideas why?

share|improve this question
It looks like you need to visit that URL and confirm your API key. What happens when you open the page? – Riking May 10 '12 at 18:57
I did that. Once I open the URL I get to the 'Allow acces to API' or something and then I click 'Allow', then hit Enter. The webpage I open looks exactly it should look according to the tutorial. – alkopop79 May 10 '12 at 19:00
I even get this: "Your Dropbox account is now connected with python_app!" – alkopop79 May 10 '12 at 19:01
Hmmm.. I dunno. Double-check everything, I guess. Make sure that your keys are correct, oh and you shouldn't have pasted them here :S – Riking May 10 '12 at 19:05
please, don't duplicate: stackoverflow.com/q/10539442/236871 – KurzedMetal May 10 '12 at 19:05

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.