Michal Kučera
KKinde
•Created by Michal Kučera on 10/30/2024 in #💻┃support
Access blocked: Kinde's request does not comply with Google's policies
And then connect it inside the Google Connection in Kinde.. right?
7 replies
KKinde
•Created by Michal Kučera on 10/30/2024 in #💻┃support
Access blocked: Kinde's request does not comply with Google's policies
Do I have to create an Google OAuth screen for Kinde?
7 replies
KKinde
•Created by Michal Kučera on 10/30/2024 in #💻┃support
Access blocked: Kinde's request does not comply with Google's policies
And how do I go about fixing this? I thought that by using Kinde I dont have to deal with Google permissiong 😦
7 replies
KKinde
•Created by Michal Kučera on 10/30/2024 in #💻┃support
Access blocked: Kinde's request does not comply with Google's policies
Note: I have Czech language, in the title I included the english version of the message
7 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
Thank you for the support
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
This is amazing!
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
No I didnt! Nice, thanks!
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
Does anyone know why the authUrlParams with Google social sign in does not work? 🫠
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
Heres what getKindeClient does"
const kindeClient: KindeClient = await createKindeClient({
client_id: import.meta.env.VITE_KINDE_CLIENT_ID,
domain: import.meta.env.VITE_KINDE_DOMAIN,
redirect_uri: import.meta.env.VITE_KINDE_REDIRECT_URI,
on_error_callback: () => {
useUserStore.setState({
user: null,
isFetching: false,
token: null,
loginState: null,
});
},
on_redirect_callback: async (user: KindeUser) => {
const token = await kindeClient.getToken();
useUserStore.setState({
user: user ? mapKindeUserToUser(user) : null,
isFetching: false,
token,
loginState: {
loggedin: true,
},
});
},
});
const user = kindeClient.getUser();
const token = await kindeClient.getToken();
useUserStore.setState({
user: user ? mapKindeUserToUser(user) : null,
isFetching: false,
token,
loginState: {
loggedin: !!user,
},
});
export const getKindeClient = (): KindeClient => kindeClient;
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
Also, the custom sign in via authUrlParams does not work
<Button
primary
className="w-full"
onClick={() => {
getKindeClient().login({
authUrlParams: {
connection_id: "conn_01924c8c55a768835bde1727574b08ae",
},
});
}}>
Login with google
</Button>
Heres what I have and instead of bringing me to Google, the regular sign in page shows up
11 replies
KKinde
•Created by Michal Kučera on 10/18/2024 in #💻┃support
Can I include just one button instead of Sign in / Sign up?
How would you recommend to approach this?
11 replies
KKinde
•Created by Michal Kučera on 10/2/2024 in #💻┃support
I want to recreate my business. Is it possible to delete the old one?
Understood, thanks @Oli - Kinde
6 replies