callback, 3rd party authentication, convexAuth
I am running into a problem with Figma Oauth 2.0 callback which returns with ?code=&state= appended to the return URL. Now, the ?code part of it is getting consumed by ConvexAuth. I'd love some help on getting around it.
I edited my middleware.ts to do the following:
But that doesn't fix it either.
I couldn't use this workaround because I am not using tanstack server:
https://github.com/get-convex/convex-auth/issues/145
The work around would be to break out a chunk of code out from ConvexAuthNextjsServerProvider and that is painful.
Integration with a third party is common, so what could I be missing? This has to be solved elegantly. A movement on this thread: https://github.com/get-convex/convex-auth/issues/145 as suggested by @ballingt and @sshader would work.
GitHub
Convex Auth consumes pages that have "code" as search param · Issu...
Came across this curious case recently: A user is created and authenticated through Convex Auth, no problem, no sweat. As a business rule, that user needs to be able to connect a Mailchimp account ...
10 Replies
@uma I'm going to see about providing some kind of escape hatch for this, will update.
Proposal:
Handle custom OAuth flows
If you have custom OAuth flows that use the
code
query parameter (like Figma
OAuth), you can prevent Convex Auth from handling those codes by providing a
shouldHandleCode
callback:
The callback receives the request object and should return true
if Convex Auth
should handle the code parameter, or false
if it should be left alone for your
custom OAuth flow to handle.I can use this, yes!!!
I'm going to publish a fork with this included, can you test?
cool, that'll be quicker than setting up a repro. just a minute
Alright you can do:
That will install the fork under the alias of the original package name so you don't have to update your imports
Never done this: installing fork under same alias, so this feels cool. Will report back.
Broke something..fixing. Issues are on my end. I am on it.
How about this? It will check the pathname first, if matched then no need to go through the convex auth middleware.
This works - I had some outdated packages, installed them and now I receive the callback 'code' and my middleware.ts code that is replacing code with figmaCode as query param - that's successful too! Whoa!
Super happy.
Didn't try your suggestion, Sheng, but that should work too - saying this from reading the code only.
Yes, basically is just run some code before reaching the convex auth middleware
@erquhart i also get some warnings because of the new code. Is there a github thread where I should be tabulating them?
Here is fine for now
I will send some reports tonight - have to prepare for a demo going to take place at Convex this evening! 😎