Replies: 4 comments 5 replies
-
Are you aware of this already @leeyuentuen ? |
Beta Was this translation helpful? Give feedback.
-
let me check it |
Beta Was this translation helpful? Give feedback.
-
public release 1.6.0 |
Beta Was this translation helpful? Give feedback.
-
Developer here, coming from #96 (comment):
Not sure I follow- I would save you are using it? if not refresh or self.token_expiry is None or self.token_expiry < datetime.now():
code = await self._get_code()
if code is None:
return
params = {
"query": "query getAuthToken($code: String!) { getAuthToken(code: $code) { id_token access_token refresh_token expires_in }}",
"operationName": operationName,
"variables": json.dumps({"code": code}),
} Trying this I always get failure:
Changing
I was using |
Beta Was this translation helpful? Give feedback.
-
Looks like there is a new API endpoint available.
The "old"
/my-star
is no longer working. However, there is a new one/mystar-v2
Beta Was this translation helpful? Give feedback.
All reactions