Josh | Fanpool
Josh | Fanpool4mo ago

Logs do not work

export const { auth, signIn, signOut, store } = convexAuth({ providers: [ GitHub({ account: (acc) => { console.log({ acc }); return acc; }, }), ], }); For some reason, this, logs do not work. It's frustrating. I need to get the accesstoken, I get from github
2 Replies
Oren
Oren4mo ago
make sure to check logs in convex dashboard -> dev instance
ian
ian4mo ago
You can find the token stored in the database in one of the auth tables I believe. I'm not sure if the account callback in the provider is called by convex auth

Did you find this page helpful?