Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -32,9 +32,9 @@ wb.open(authorization_request_url, new=True)
|
|
32 |
access_token = client_instance.acquire_token_by_authorization_code(
|
33 |
code=AUTHORIZATION_KEY,
|
34 |
scopes=SCOPES)
|
35 |
-
|
36 |
access_token_id = access_token['access_token']
|
37 |
headers = {'Authorization': 'Bearer ' + access_token_id}
|
|
|
38 |
endpoint = base_url + 'me'
|
39 |
response = requests.get(endpoint, headers=headers)
|
40 |
st.write(response)
|
|
|
32 |
access_token = client_instance.acquire_token_by_authorization_code(
|
33 |
code=AUTHORIZATION_KEY,
|
34 |
scopes=SCOPES)
|
|
|
35 |
access_token_id = access_token['access_token']
|
36 |
headers = {'Authorization': 'Bearer ' + access_token_id}
|
37 |
+
|
38 |
endpoint = base_url + 'me'
|
39 |
response = requests.get(endpoint, headers=headers)
|
40 |
st.write(response)
|