Welcome to the Kinde community.

P
K
A
A
A
Members
f6
f
f6
Offline, last seen 2 days ago
Joined September 23, 2024
f
f6
·

linked auth

{
id: 'Kp_.....',
email: undefined,
family_name: 'falah',
given_name: 'Mohammed',
picture: 'https://.....',
username: undefined,
phone_number: undefined
}


why does linkedIn does not return the email
35 comments
f
C
f
f6
·

auth init!

how can i proceed my login initialisation
with just https://accounts.coachbots.com/ url (there shouldn't be psid or any other think).

is this possible, if yes let me know the solutions?
1 comment
D
f
f6
·

No user found

[Nextjs] : No user found when i try opening the web page again , some fetch() error in the console. Get normal when i clear the cookies

adding more info. kindly comment if it's understoond, Thanks
1 comment
A
is there a way where i can create user directly with email and password using, where the user can just login without the user need to verify the email while logging in for the first time for the first time

Plain Text
const usersResponse = await fetch(
      "https://{business_name}.kinde.com/api/v1/user",
      {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Accept: "application/json",
          Authorization: `Bearer ${access_token}`,
        },
        body: JSON.stringify({
          profile: {
            given_name: firstName,
            family_name: lastName,
          },
          organization_code: "org--------",
          identities: [
            {
              type: "email",
              details: {
                email: email,
                password: password,
              },
            },
          ],
        }),
      }
    );
    const userData = await usersResponse.json();
1 comment
A
f
f6
·

custom domain

i have configured my subdomain 'https://accounts.coachbots.com/' but it shows privacy error. my other subdomains are running without any issues
6 comments
D
f
S
using kinde.com as a auth provider can we change the consent screen "continue to 'kinde.com'" to "continue to 'mydomain.com"
4 comments
R
O
f