jasdeep
jasdeep
KKinde
Created by jasdeep on 6/24/2024 in #💻┃support
How can I figure out whats gone wrong when I get this error?
Nopes but not sure why it happened or under what condition it might happen again
5 replies
KKinde
Created by jasdeep on 4/18/2024 in #💻┃support
Newbie question: How do we save post login user into event.locals when using kinde with sveltekit?
@Daniel_Kinde I have worked around the issue for now but not in a clean way as I mentioned .... checking if route is authenticated in one place rather than repeating the same code across all pages
9 replies
KKinde
Created by jasdeep on 5/29/2024 in #💻┃support
IOS app review
I realised this little late.... changing those keys now
6 replies
KKinde
Created by jasdeep on 5/29/2024 in #💻┃support
IOS app review
No description
6 replies
KKinde
Created by jasdeep on 5/29/2024 in #💻┃support
IOS app review
hi...thanks @Daniel_Kinde ...just the repeated objections on create account screen where first name and last name is being asked ...rejecting the app because of that
6 replies
KKinde
Created by jasdeep on 5/28/2024 in #💻┃support
Error not found /api/auth/login
Not much more ...I am trying to source maps updated in sentry to drill more into the issue
4 replies
KKinde
Created by jasdeep on 5/28/2024 in #💻┃support
Error not found /api/auth/login
I am using the following versions
"@kinde-oss/kinde-auth-sveltekit": "^1.3.0", "svelte": "^4.2.14","@sveltejs/kit": "^2.5.6"
"@kinde-oss/kinde-auth-sveltekit": "^1.3.0", "svelte": "^4.2.14","@sveltejs/kit": "^2.5.6"
4 replies
KKinde
Created by jasdeep on 4/24/2024 in #💻┃support
Has anyone used kinde_flutter_sdk to build android app?
any thoughts anyone??? someone from Kinde???
3 replies
KKinde
Created by jasdeep on 4/18/2024 in #💻┃support
Newbie question: How do we save post login user into event.locals when using kinde with sveltekit?
any suggestions?
9 replies
KKinde
Created by jasdeep on 4/18/2024 in #💻┃support
Newbie question: How do we save post login user into event.locals when using kinde with sveltekit?
the package version I am using is
"@kinde-oss/kinde-auth-sveltekit": "^1.3.0"
"@sveltejs/kit": "^2.5.6",
"@kinde-oss/kinde-auth-sveltekit": "^1.3.0"
"@sveltejs/kit": "^2.5.6",
9 replies
KKinde
Created by jasdeep on 4/18/2024 in #💻┃support
Newbie question: How do we save post login user into event.locals when using kinde with sveltekit?
also I would like to check for private routes in hooks.server rather than individual pages ... too much duplication of code
9 replies
KKinde
Created by jasdeep on 4/18/2024 in #💻┃support
Newbie question: How do we save post login user into event.locals when using kinde with sveltekit?
if (event.locals.isAuthenticated) {
event.locals.user = await event.locals.getUser();
event.locals.token = await event.locals.getToken();
}
if (event.locals.isAuthenticated) {
event.locals.user = await event.locals.getUser();
event.locals.token = await event.locals.getToken();
}
this does not work... not matter how many times I sign out and sign in ...at this point the event.locals is empty object but if I check for
const isAuthenticated = await kindeAuthClient.isAuthenticated(
request as unknown as SessionManager
);
const isAuthenticated = await kindeAuthClient.isAuthenticated(
request as unknown as SessionManager
);
on +page.server or +layout.server ... its value is true.
9 replies