Mez
Mez
CCConvex Community
Created by ian on 3/11/2025 in #show-and-tell
ReactFlow + Convex
Yup, makes sense!
11 replies
CCConvex Community
Created by ian on 3/11/2025 in #show-and-tell
ReactFlow + Convex
But I am using reactflow with a convex project and I simply save the reactflow state as a json string!
11 replies
CCConvex Community
Created by ian on 3/11/2025 in #show-and-tell
ReactFlow + Convex
Nice! I simply created a schema viz!
11 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
when authAccounts table was made for this purpose
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
Ah yes that is the issue. It'll be a multiple providers and I'd keep adding them to the user table
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
OK! I'll move it to an issue on github.
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
Let's take google as an example. 1. I configure the provider with the following
authorization: {
params: {
access_type: "offline",
prompt: "consent",
scope:
"https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email openid",
},
},
authorization: {
params: {
access_type: "offline",
prompt: "consent",
scope:
"https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email openid",
},
},
2. This will return in the profile callback, token access and refresh token in the Tokenset 3. I want to have that token info saved in the authAccounts table. 4. it'll be my responsibility to make sure refreshing is happening I am guessing. Auth.js doesn't handle this.
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
Exactly, yes.
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
yes, that brings me back to my post. I was hoping for guidance on how to handle this.
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
ah I see. thanks for linking the code! My goal are the following: 1. I needed access token from different providers for things like making API requests and callback hooks etc. 2. Wanted to see if I can just use convexAuth to handle that follow for me.
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
fyi I did try to define the AccountCallback option in the Google provider as a test. My guess was this info would be what is store in the authAccounts table. So I updated the schema to added the new fields for the token info, but it didn't update them.
25 replies
CCConvex Community
Created by Mez on 12/9/2024 in #general
I am in the process of trying to manage
Yes I did read that doc! So I understand the use of the createOrUpdateUser callback. A topic I don't understand yet; how does convexAuth decide what data about the account to save to the authAccounts table. If the access token & refresh token information is available, why doesn't it add to the document being saved? Is this responsibility designated to userland?
25 replies