Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
You can pass it in anonymous_id in the url and it will use that as id when it gets to the token. You can store the anonymous_id in a cookie and resend when you need to refresh,
const res = await fetch(`${Config.BASE_URL}api/episerver/connect/token/anonymous`, {
method: 'POST',
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: qs.stringify({
grant_type: "anonymous",
client_id: "frontend",
scope: "anonymous_id",
anonymous_id: "4f6ba206-55df-4e0c-8e4e-6f4192631ee4"
}),
})
const data = await res.json();
Hello, I am currently working on implementing a guest user journey using grant type anonymous flow. The guest user should be able to add items to his cart and checkout. However, I am facing an issue with the anonymous flow; everytime I request an anonymous token using api/episerver/connect/token/anonymous everything that has been created or added items to the cart with that token won't work on a new one.
I have noticed that my token only lasts for an hour and no refresh token is returned. is there a way to be able to refresh this token or any way to keep the cart data if it expires?
I am open to any suggestions.
Thanks in advance.
services.AddOpenIDConnect<SiteUser>( useDevelopmentCertificate: true, signingCertificate: null, encryptionCertificate: null, createSchema: true, options => { var application = new OpenIDConnectApplication() { ClientId = "postman-client", ClientSecret = "postman", Scopes = { "openid", "offline_access", "profile", "email", "roles", "anonymous_id", ContentDeliveryApiOptionsDefaults.Scope, CommerceApiOptionsDefaults.Scope } }; application.RedirectUris.Add(new Uri("https://oauth.pstmn.io/v1/callback")); options.Applications.Add(application); options.AllowResourceOwnerPasswordFlow = true; options.AllowAnonymousFlow = true; });