Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ from Data_Fetching_and_Rendering import fetch_org_urn
|
|
5 |
token_received = {"status": False, "token": "", "client_id": ""}
|
6 |
|
7 |
# 1) this will be called by POST
|
8 |
-
def receive_token(accessToken:
|
9 |
token_received["status"] = True
|
10 |
token_received["token"] = accessToken
|
11 |
token_received["client_id"] = client_id
|
|
|
5 |
token_received = {"status": False, "token": "", "client_id": ""}
|
6 |
|
7 |
# 1) this will be called by POST
|
8 |
+
def receive_token(accessToken: dict, client_id: str):
|
9 |
token_received["status"] = True
|
10 |
token_received["token"] = accessToken
|
11 |
token_received["client_id"] = client_id
|