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?
urllib2, instead of either one of thelibcurlwrappers (since you seem to know your way aroundcurl) or a higher-level library likerequests? – abarnert Nov 12 '12 at 23:31curlline (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