This commit is contained in:
parent
54acfe2b89
commit
27612186de
|
@ -8,13 +8,13 @@ async def check_auth(req):
|
||||||
token = req.headers.get("Authorization")
|
token = req.headers.get("Authorization")
|
||||||
print(f"[services.auth] checking auth token: {token}")
|
print(f"[services.auth] checking auth token: {token}")
|
||||||
|
|
||||||
headers = {"Authorization": "Bearer " + token, "Content-Type": "application/json"}
|
headers = {"Cookie": f"cookie_session={token};\ncookie_session_domain={token}", "Content-Type": "application/json"}
|
||||||
# query getSession($params: SessionQueryInput){ session(params: $params) { message user { id } } }
|
# query getSession($params: SessionQueryInput){ session(params: $params) { message user { id } } }
|
||||||
gql = {
|
gql = {
|
||||||
"query": f"query GetSession($params: SessionQueryInput)"
|
"query": f"query GetSession($params: SessionQueryInput)"
|
||||||
+ "{ session(params: $params) { message user { id } } }",
|
+ "{ session(params: $params) { message user { id } } }",
|
||||||
"operationName": "GetSession",
|
"operationName": "GetSession",
|
||||||
"variables": None,
|
"variables": {},
|
||||||
}
|
}
|
||||||
|
|
||||||
async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=30.0)) as session:
|
async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=30.0)) as session:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user