fetchOptions hooks not running
I'm seeing the following:
- request specific onRequest/onResponse/onError/onSuccess run correctly
- authClient onResponse (for all requests) runs correctly
- authClient onRequest only runs if there is no request specific onRequest
- authClient onSuccess never runs, no matter what, even when onResponse triggers for a 200 OK response
I'm exporting a single authClient (no destructuring).
Any of this expected? I did check both BetterAuth and BetterFetch docs and didn't find anything specfic to this. Added the bug tag because a tag is required, but it may not be a bug.
5 Replies
Just using onResponse for now
Seems likely due to: https://github.com/better-auth/better-auth/issues/1631
GitHub
fetchOptions onsuccess not be called when use bearer token plugin. ...
Is this suited for github? Yes, this is suited for github To Reproduce use bearer token plugin, add this code from doc: export const authClient = createAuthClient({ fetchOptions: { onSuccess: (ctx)...
Hey @erquhart good to see you 👋
Yeah this is definitely unexpected. I think @bekacru would more likely understand the cause than me
Yeah the global on success doesn’t execute cause it’s overwritten by internal callback. It’s a known issue, requires a little bit of work but will be fixed.
Ah okay, thanks for the info