def code(self, var=None, **params):
code = urllib.quote(cherrypy.request.params['code'])
callback = cherrypy.url()
payload = {"client_id": Client_ID, "client_secret": Client_Secret,
"code": code, "grant_type": "authorization_code", "redirect_uri": callback}
url = "https://api.amazon.com/auth/o2/token"
r = requests.post(url, data=payload)
resp = r.json()
line = 'refresh_token = "' + resp['refresh_token'] + '"'
with open("creds.py", 'a') as f:
f.write(line)
return "Success!, refresh token has been added to your creds file, you may now reboot the Pi <br>{}".format(resp['refresh_token'])
auth_web.py 文件源码
python
阅读 35
收藏 0
点赞 0
评论 0
评论列表
文章目录