Merge pull request #946 from allevo/master
Use json method of requests.Response
This commit is contained in:
commit
4d9916e1a6
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
from flask import Flask, render_template, session, request, json, abort, g
|
||||
from flask import Flask, render_template, session, request, abort, g
|
||||
|
||||
import requests
|
||||
|
||||
|
|
@ -38,7 +38,7 @@ def login_handler():
|
|||
'audience': request.host_url,
|
||||
}, verify=True)
|
||||
if resp.ok:
|
||||
verification_data = json.loads(resp.content)
|
||||
verification_data = resp.json()
|
||||
if verification_data['status'] == 'okay':
|
||||
session['email'] = verification_data['email']
|
||||
return 'OK'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue