Zaki
KKinde
•Created by bl0ckchain_brat on 3/9/2025 in #💻┃support
Feature flag is not working
Hi @bl0ckchain_brat, just checking in — have you updated to the latest release? If so, could you let us know if the issue still persists?
6 replies
KKinde
•Created by Jayden on 7/13/2024 in #💻┃support
React SDK Sample CORS Error
Hi @brammeken, I hope you're doing well. I just wanted to check if you're still experiencing the issue. Please let me know if you need any further assistance.
4 replies
KKinde
•Created by Asad Malik on 11/2/2024 in #💻┃support
NUXT. Vue. Error 500 while accessing /api/login, while it works fine when running dev server.
Hi @Asad Malik, I hope you're doing well. I just wanted to check if you're still experiencing the issue. Please let me know if you need any further assistance.
6 replies
KKinde
•Created by GabriFila on 8/7/2024 in #💻┃support
New Expo SDK setup
Hi,
I really appreciate your patience, and I completely understand how important this is for your app launch. We're still actively investigating the issue, and I'll check with the team and get back to you with a possible workaround.
Thanks again for your patience and for working with Kinde!
5 replies
KKinde
•Created by __maxom__ on 2/16/2025 in #💻┃support
Kinde Error:
Also you may find this React Starter Kit helpful: https://github.com/kinde-starter-kits/react-starter-kit
34 replies
KKinde
•Created by __maxom__ on 2/16/2025 in #💻┃support
Kinde Error:
Hi @maxom, just to clarify, after the user is successfully authenticated, they are being redirected to the wrong page—specifically, your Kind subdomain. Is that correct?
34 replies
KKinde
•Created by Mert Efe Cerit on 1/28/2025 in #💻┃support
Nuxt + Kinde Module Logic Problems
Hi @Mert Efe Cerit, I've raised this with our team, and we're currently investigating the best approach. We'll get back to you as soon as possible with more details. Please let us know if you have any additional insights in the meantime.
18 replies
KKinde
•Created by Mert Efe Cerit on 1/28/2025 in #💻┃support
Nuxt + Kinde Module Logic Problems
Hi @Mert Efe Cerit, have you had a chance to log out of Kinde, clear the cache, and test it again? We believe an active Kinde session might be automatically authenticating you. Looking forward to your update!
18 replies
KKinde
•Created by Chris on 2/6/2025 in #💻┃support
Confused about user permissions vs properties
Hi @Chris,
No, permissions are not always present in access tokens by default. Here's what you need to know:
Including API Scopes in Permissions Claim
You need to explicitly enable permissions in your access tokens. Here's how to do it: 1
1) Go to Settings > Applications and select "View details" on the relevant application
2) Select "Tokens" in the side menu
3) Scroll to the "Token customization" section and select "Customize" on the "Access token" tile
4) Switch on "Include API scopes in the permissions claim"
5) Select "Save"
Here is the documentation on including permissions: https://docs.kinde.com/developer-tools/your-apis/user-api-scopes/#include-api-scopes-in-the-permissions-claim
Let me know if you need any further clarification!
5 replies
KKinde
•Created by Chris on 2/6/2025 in #💻┃support
How are people using Hasura?
Hi @Chris,
Kinde provides built-in token formatting specifically designed for Hasura integration, streamlining the process and ensuring compatibility.
To enable Hasura integration:
1) Navigate to Settings > Applications, then select Details for your application.
2) Go to the Tokens tab.
3) Scroll to the Token Integrations section.
4) Toggle on Hasura mapping.
5) Click Save changes.
This ensures that Kinde automatically formats JWT tokens according to Hasura’s requirements, making the integration seamless.
Customizing Tokens
You can further tailor your tokens by:
- Adding additional claims (e.g., organization name, roles, email).
- Including custom properties you define.
- Making properties available in tokens by marking them as public.
Let me know if you need any further clarification!
4 replies
KKinde
•Created by Daniel on 2/6/2025 in #💻┃support
Kinde & .NET Blazor Server?
Could you share the 500 error message with me?
47 replies
KKinde
•Created by Daniel on 2/6/2025 in #💻┃support
Kinde & .NET Blazor Server?
Thanks for sharing! Could you try this updated code, which includes a state parameter?
builder.Services.AddAuthentication(options =>
{
options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
})
.AddCookie()
.AddOpenIdConnect(opt =>
{
opt.Authority = authority;
opt.ClientId = clientId;
opt.ClientSecret = clientSecret;
opt.SignedOutCallbackPath = "/signed-out";
opt.CallbackPath = new PathString("/signin-oidc");
opt.SaveTokens = true;
opt.Events = new OpenIdConnectEvents
{
// Set the 'state' parameter before redirecting
OnRedirectToIdentityProvider = context =>
{
string customStateValue = "BlueFox0101"; // For testing purposes, and it should be dynamic
context.ProtocolMessage.State = customStateValue;
return Task.CompletedTask;
},
OnAuthenticationFailed = context =>
{
// Log the error or examine it further
Console.WriteLine("Authentication failed: " + context.Exception.Message);
return Task.CompletedTask;
}
};
});
Let me know if you run into any issues!47 replies
KKinde
•Created by Tito on 2/3/2025 in #💻┃support
Authenticating API calls with Kinde
Hi @corwin, great to hear it’s working for you! @Tito, could you confirm if it’s resolved on your end as well? Feel free to reach out if anything else comes up—we’re here to help!
61 replies
KKinde
•Created by Tito on 2/3/2025 in #💻┃support
Authenticating API calls with Kinde
After the user successfully logs in on Expo, an access token is obtained and stored. When making a request to the Next.js endpoint, you should pass the stored access token in the Authorization header as a Bearer token. Next.js should then validate this token and use it to fetch the required data.
61 replies
KKinde
•Created by Tito on 2/3/2025 in #💻┃support
Authenticating API calls with Kinde
Hi Tito, just to confirm—did the user successfully log in on the client side, and is the issue occurring when calling getUser on the Next.js server side?
61 replies
KKinde
•Created by Mert Efe Cerit on 1/28/2025 in #💻┃support
Nuxt + Kinde Module Logic Problems
Thanks for the update, @Mert Efe Cerit. Just to confirm, can you try logging out from Kinde, clearing the cache on Chrome, and testing again? Let us know if the issue persists.
18 replies
KKinde
•Created by Joshkop on 11/2/2024 in #💻┃support
Get list of users who consented to marketing emails
Hi @Joshkop,
Thanks for your patience! We're still working on this feature, and once it's live, we’ll be sure to notify you.
As for expanding properties on the
/api/v1/users
endpoint, let me check with my team to see if it's in the plans, and I'll get back to you.
Appreciate your feedback—it really helps us improve!10 replies
KKinde
•Created by Patient on 1/19/2025 in #💻┃support
Did not use affiliate link
You're welcome to share here, or you can submit a Support Ticket via Discord—whichever works best for you!
4 replies
KKinde
•Created by Mert Efe Cerit on 1/28/2025 in #💻┃support
Nuxt + Kinde Module Logic Problems
Hi @Mert Efe Cerit,
As Stephen suggested, the issue might be due to an active and valid Kinde session. Could you please try checking this behavior on a different browser and let us know if the issue persists?
Thanks!
18 replies
KKinde
•Created by Patient on 1/19/2025 in #💻┃support
Did not use affiliate link
Hey @Patient, If you send me the email you used for the purchase and Kinde sub domain, We can check and make sure Bytegrad gets the proper credit. Let me know, and We’ll sort it out!
4 replies