Is there a way to store the user claim information...
# general
d
Is there a way to store the user claim information from third party login in the session?
r
Yes!
Which recipe are you using?
d
ThirdParty
Once you have the info from the third party provider, you can do:
Copy code
response.session.updateAccessTokenPayload({
    ...response.session.getAccessTokenPayload(),
    <add third party info here>
})
And the above code snippet will go inside the
if (response.status === "OK") {
block.
I assume that you used node
3 Views