Umut (Hope) YILDIRIM
Umut (Hope) YILDIRIM
CCConvex Community
Created by Umut (Hope) YILDIRIM on 11/9/2023 in #support-community
Custom Auth with Kinde
I came across some advertisements on Twitter and Instagram and was immediately intrigued. As someone who loves learning and testing new things, trying it out was a no-brainer for me. However, I noticed that they currently lack some SaaS integrations. I also use Clerk and Auth.js.
21 replies
CCConvex Community
Created by Umut (Hope) YILDIRIM on 11/9/2023 in #support-community
Custom Auth with Kinde
@Michal Srb , I've opened a PR here: https://github.com/get-convex/convex-js/pull/5. I may have created a bit of a mess 😅. Any assistance or feedback on this would be greatly appreciated!
21 replies
CCConvex Community
Created by Umut (Hope) YILDIRIM on 11/9/2023 in #support-community
Custom Auth with Kinde
I would love to help. Kinde currently offers 7500 free active users instead of 5000 and they are a new company so I'm just trying them out.
21 replies
CCConvex Community
Created by Umut (Hope) YILDIRIM on 11/9/2023 in #support-community
Custom Auth with Kinde
Thank you so much It works now 😄
21 replies
CCConvex Community
Created by Umut (Hope) YILDIRIM on 11/9/2023 in #support-community
Custom Auth with Kinde
So after putting my auth token to debugger this is the output(I will destroy this app so no worries);
{
"aud": [],
"azp": "6557e00e8a2948c8956a82b425c40259",
"billing": {
"has_payment_details": false,
"org_entitlements": null,
"plan": {
"code": null,
"created_on": null,
"has_trial_period": null,
"invoice_due_on": null,
"name": null,
"plan_charge_type": null,
"trial_expires_on": null
}
},
"exp": 1699611988,
"iat": 1699525588,
"iss": "https://luminarylightning.kinde.com",
"jti": "5f38345e-d0a0-4f7c-b955-69fc66f7e028",
"org_code": "org_db449a11ad6",
"permissions": [],
"scp": [
"openid",
"profile",
"email",
"offline"
],
"sub": "kp_e7a1e11a5d1e4253b9d4755b3e8b72fd"
}
{
"aud": [],
"azp": "6557e00e8a2948c8956a82b425c40259",
"billing": {
"has_payment_details": false,
"org_entitlements": null,
"plan": {
"code": null,
"created_on": null,
"has_trial_period": null,
"invoice_due_on": null,
"name": null,
"plan_charge_type": null,
"trial_expires_on": null
}
},
"exp": 1699611988,
"iat": 1699525588,
"iss": "https://luminarylightning.kinde.com",
"jti": "5f38345e-d0a0-4f7c-b955-69fc66f7e028",
"org_code": "org_db449a11ad6",
"permissions": [],
"scp": [
"openid",
"profile",
"email",
"offline"
],
"sub": "kp_e7a1e11a5d1e4253b9d4755b3e8b72fd"
}
My env config;
VITE_KINDE_CLIENT_ID=6557e00e8a2948c8956a82b425c40259
VITE_KINDE_DOMAIN=https://luminarylightning.kinde.com
VITE_KINDE_REDIRECT_URL=http://localhost:3000
VITE_KINDE_LOGOUT_URL=http://localhost:3000

# Deployment used by `npx convex dev`
CONVEX_DEPLOYMENT=dev:formal-bass-14 # team: umuthopeyildirim, project: kindeconvex
VITE_CONVEX_URL=https://formal-bass-14.convex.cloud
VITE_KINDE_CLIENT_ID=6557e00e8a2948c8956a82b425c40259
VITE_KINDE_DOMAIN=https://luminarylightning.kinde.com
VITE_KINDE_REDIRECT_URL=http://localhost:3000
VITE_KINDE_LOGOUT_URL=http://localhost:3000

# Deployment used by `npx convex dev`
CONVEX_DEPLOYMENT=dev:formal-bass-14 # team: umuthopeyildirim, project: kindeconvex
VITE_CONVEX_URL=https://formal-bass-14.convex.cloud
21 replies