3
我花了數小時試圖解決如何使用python請求庫獲取oauth2令牌。我究竟做錯了什麼?使用Python請求庫獲取Google Oauth2令牌
r=requests.post("https://accounts.google.com/o/oauth2/token",
headers={
'content-type':'application/x-www-form-urlencoded'},
params={
'code':request.GET['code'],
'client_id':'11111111111.apps.googleusercontent.com',
'client_secret':'my secert',
'redirect_uri':'http://localhost/etc'
'grant_type':'authorization_code'})
看一看這裏工作的例子:http://www.joyofdata.de/blog/oauth2-google-api-python-google-analytics/ – Raffael