jess
jess
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
it works now 🥳 🥳
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
ohh i feel silly - i had corrected my var from JWKS Endpoint -> Issuer when rereading the instructions in .env.local but not in the convex vars
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
might be unquoted jwt in my env 😮‍💨 we'll see
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
thanks for the attempt to repro!
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
thanks so much (and wow such speedy replies ❤️ ). to clarify the name of my application in Clerk is not convex, but I'm assuming that's irrelevant
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
just confirmed the claims in clerk!
{
"aud": "convex",
"name": "{{user.full_name}}",
"email": "{{user.primary_email_address}}",
"picture": "{{user.image_url}}",
"nickname": "{{user.username}}",
"given_name": "{{user.first_name}}",
"updated_at": "{{user.updated_at}}",
"family_name": "{{user.last_name}}",
"email_verified": "{{user.email_verified}}"
}
{
"aud": "convex",
"name": "{{user.full_name}}",
"email": "{{user.primary_email_address}}",
"picture": "{{user.image_url}}",
"nickname": "{{user.username}}",
"given_name": "{{user.first_name}}",
"updated_at": "{{user.updated_at}}",
"family_name": "{{user.last_name}}",
"email_verified": "{{user.email_verified}}"
}
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
and my clerk JWT is called "convex"
16 replies
CCConvex Community
Created by jess on 8/7/2023 in #support-community
Next.js: Clerk NoAuthProvider Error
it's unchanged from the starter code
const config = {
providers: [
{
domain: process.env.CLERK_JWT_ISSUER_DOMAIN,
applicationID: "convex",
},
],
};

export default config;
const config = {
providers: [
{
domain: process.env.CLERK_JWT_ISSUER_DOMAIN,
applicationID: "convex",
},
],
};

export default config;
16 replies