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.

New to Curl/Urllib

I want to write this in python

curl -X POST https://connect.stripe.com/oauth/token \
  -H "Authorization: Bearer COORkkrbNbhjREIhoeQk7rOIPQihRVD" \
  -d code=AUTHORIZATION_CODE \
  -d grant_type=authorization_code

and im not sure how to set the header...here's what I have:

  url = 'https://connect.stripe.com/oauth/token'

  header = "Bearer BEERlkrbMbhjUXEIhurQk7rUUCLhmRVD"
  code = request.GET['code']
  grant_type = authorization_code
  values = {'code': code, 'grant_type': grant_type}
  headers = {'Authorization' : header}

  data = urllib.urlencode(values)
  req = urllib2.Request(url, data, headers)
  response = urllib2.urlopen(req)

how do I modify this?

share|improve this question
3  
First, is there a reason you have to use urllib2, instead of either one of the libcurl wrappers (since you seem to know your way around curl) or a higher-level library like requests? – abarnert Nov 12 '12 at 23:31
1  
Second, what exactly is your problem? You've written code that sends exactly the same header and form values as the curl line (except that you're not setting 'code': 'AUTHORIZATION_CODE', but I assume that's an intentional change). Your only question is "how do I modify this?" Well, you can modify it in all kinds of ways, how do you want to modify it? – abarnert Nov 12 '12 at 23:35

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.