Auth0 import - file too large
Organizations API doesn't provide full functionality
GET /api/v1/organization
) will return this:
```
{...Inability to update certain Application fields via API
Automatically adding user to organization on sign-in (not sign-up)
Is there a way to change *when* email verification comes up in the sign-up flow?
How to organise API Tests with REST and Kinde?
nuxt ssr
$auth
is null
in a Vue component, which makes Kinde unusable for me (existing site). Appears composables are not supported in Nuxt with SSR disabled.
I've tried using a custom sessionManager
for Nitro (/server/
) in Nuxt, but it doesn't persist. Auth flow works and callback URL is invoked, but there's no way to persist the session.
Is there a fix, docs or something I'm missing??...Token expired issues
KindeServerSession values are null when using Stripe webhook
not getting verification emails
SMTP Server Timeout
How to setup SSO only for one organization?
Express Protected Routes: How to pass JWT from client?
protectRoute
and getUser
middlewares in each route. From the client-side, I am using Expo and getting a JWT once successfully logging in, but I'm not sure how I should pass this as a parameter when invoking one of my API endpoints. How can I do this?...After calling createOrg({ org_name: 'name' }) a call to /token that returns 500
getOrganization()
returns no orgCode
Am I doing something wrong? is this an issue I need to work around? ...Custom properties added to the wrong token
Extending KindeIdToken type to include the `organizations` claim
organizations
claim to the id token and would like TypeScript to know about it so I could do:
```
import { getKindeServerSession } from "@kinde-oss/kinde-auth-nextjs/server";
const { getIdToken } = getKindeServerSession();
const idToken = await getIdToken();...useKindeAuth isLoading doesn't change to false
isLoading
does not change to false
.
What am I missing?
```
"use client";...Getting organization handle in id token claims
myapp.com/org-handle
, I'd like to check whether the user has access to the org-handle
organization, and if so, show them the page.
I found how to add organizations
to the id token claims, but this array contains the org id and name only. I'd like the org handle to be there.
Is this possible?
If not, what's the recommended way to check whether the user has access to a specific org given an org handle?
I also tried to fetch the list of all organizations using the Management API, but the handle is not returned there either....Permission doesn't work
await getPermissions()
returns no permissions: { permissions: [], orgCode: 'org_bcddc426a6d' }
And, await getPermission()
returns not granted: { orgCode: 'org_bcddc426a6d', isGranted: false }
What am I missing?...How to sign the user out when /logout is visited?
/logout
. This could be helpful if the user is stuck in some weird UI state due to a bug, or the "Sign out" button is not rendered for some reason.
Having a simple /logout
page to reset the auth could be a time saver at times.
How could I achieve this?...