Ollie Mansell
KKinde
•Created by Ollie Mansell on 10/19/2024 in #💻┃support
Using the kinde management API...
Ah - Great, thanks Oli
9 replies
KKinde
•Created by Ollie Mansell on 10/19/2024 in #💻┃support
Using the kinde management API...
Thanks - another question - it doesn’t seem possible to find a user based on anything other than their ID? So I can’t for example search for a user based on their email address?
9 replies
KKinde
•Created by Ollie Mansell on 10/19/2024 in #💻┃support
Using the kinde management API...
Get users object:
{
"id": "string",
"provided_id": "string",
"email": "string",
"username": "string",
"last_name": "string",
"first_name": "string",
"is_suspended": true,
"picture": "string",
"total_sign_ins": 0,
"failed_sign_ins": 0,
"last_signed_in": "string",
"created_on": "string",
"organizations": [
"string"
],
"identities": [
{
"type": "string",
"identity": "string"
}
]
}
Update user:
const inputBody = '{
"given_name": "string",
"family_name": "string",
"picture": "string",
"is_suspended": true,
"is_password_reset_requested": true,
"provided_id": "string"
}';
from the docs.
9 replies
KKinde
•Created by Ollie Mansell on 4/5/2024 in #💻┃support
adding a loading state to the SignIn component in NextJS
If you have any example repos using a custom sign in that would probably be easiest!
15 replies
KKinde
•Created by Ollie Mansell on 4/5/2024 in #💻┃support
adding a loading state to the SignIn component in NextJS
Hey, thanks for replying @Oli - Kinde - I have the API route set up using the handleAuth function, how does this relate to custom signin page? In the docs the custom sign in page calls a “login” method, does that get returned from a call to handleAuth? Ie I have to call that on the custom sign in page as well as in the auth api route handler?
15 replies
KKinde
•Created by Ollie Mansell on 4/5/2024 in #💻┃support
adding a loading state to the SignIn component in NextJS
thanks all - can I ask where the login method gets imported from? Auto-import appears broken for the nextjs kinde sdk.
15 replies