Is it possible to not allow the appwrite server to send the refresh token to the client side, only send the token instead?
From which endpoint?
Also, I don't think it would be possible without modifying the code.
ah ok, I don't think it's quite safe to send the refresh token to the client right?
getSession
It's only visible to the current user.
So I'm not sure it can be a safety matter
but that means any javascript that is running on the webpage can get the refresh token
alright
Mmm. By running xhr to that endpoint?
That is an interesting way of thinking.
I think we wait and see what Steven's thinking about it.
alright
Btw for client crefentials grant discord doesn't even give out the refresh token, so... https://discord.com/developers/docs/topics/oauth2#client-credentials-grant
It seems like that the refresh token is useless without the backend secrets
So it looks okay
ye fair enough, never thought about that lol
[SOLVED] Appwrite's Discord Oauth2 expose refresh token on the client side
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...