Fix: Error accessing cookies in fusionauth. If you are using SSR you must configure the SDK with a cookie adapter#177
Open
TGTGamer wants to merge 1 commit intoFusionAuth:mainfrom
Open
Fix: Error accessing cookies in fusionauth. If you are using SSR you must configure the SDK with a cookie adapter#177TGTGamer wants to merge 1 commit intoFusionAuth:mainfrom
TGTGamer wants to merge 1 commit intoFusionAuth:mainfrom
Conversation
…must configure the SDK with a cookie adapter When using the `next-client-cookies` as per documentation, the `nextCookieAdapter` is not passed as it's not included in the config. This causes the coreSDK to fail to grab the cookies. As the config object is using the `SDKConfig` and `FusionAuthProviderConfig` is expected, I've change the function parameter from `config` to `props` to pass the correct `FusionAuthProviderConfig` object forward.
valerii15298
approved these changes
Mar 1, 2026
There was a problem hiding this comment.
Also have this issue, ended up digging into source code and patching it myself.
Also would be better to just pass general adapter not next specific. As I checked from implementation it just needs get method to get cookie by name, and that is not next.js specific.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is this PR and why do we need it?
When using the
next-client-cookiesas per documentation, thenextCookieAdapteris not passed as it's not included in the config. This causes the coreSDK to fail to grab the cookies.As the config object is using the
SDKConfigandFusionAuthProviderConfigis expected, I've change the function parameter fromconfigtopropsto pass the correctFusionAuthProviderConfigobject forward.Pre-Merge Checklist (if applicable)