284 questions
-4
votes
1
answer
58
views
Clerk Android build fail
Ok, so I am tryna follow these instructions on the Clerk Android Quickstart
all the way up to step 4 (no code in the MainActivity or any views/viewmodels created yet)...
go to run the app...
but face ...
1
vote
1
answer
69
views
Getting "ReadableStream has already been used" when POST request and using clerkPlugin()
Below is the error I console from my client side.
{
"data": null,
"error": {
"message": "ReadableStream has already been used"
},
"headers"...
0
votes
0
answers
40
views
Next.js 15 + Clerk: JWT "token-not-active-yet" causing 401 Unauthorized on API calls
I'm developing a Next.js 15 application using Clerk for authentication. When trying to fetch user data from my API, I encounter this error:
JWT cannot be used prior to not before date claim (nbf)
Not ...
0
votes
1
answer
120
views
Getting 404 from Clerk Sign Up or Sign In redirection
I'm using Clerk Sign In and Sign Up components in my Next.js app. When a user signs up for the first time, everything works fine. However, if the user tries to sign up again (for example, using a ...
1
vote
1
answer
398
views
Permission denied despite correct RLS, as supabase.auth.getUser() returns null on server
I'm building a Next.js 14 (App Router) application using Clerk for authentication and Supabase for the database. Despite following the latest integration guides, I'm stuck on a persistent 42501 ...
0
votes
1
answer
69
views
Clerk + Sanity integration issue w/ Next.js
Using Next.js (15.2.4), Clerk Auth, and trying to integrate Sanity as a CMS into the application. After installing Sanity and hitting /studio, this error appears:
Error: Clerk: auth() was called, but ...
0
votes
0
answers
147
views
Infinite Loop Between Sign-In/Sign-Up and Callback Routes in Next.js with Clerk Auth on Vercel Deployment
I am developing a Next.js web application using Clerk for authentication with Google and GitHub providers. The authentication flow works perfectly on my local host, but when I deploy the app to Vercel,...
0
votes
0
answers
70
views
Clerk Social auth redirecturl not working when submitted to TestFlight now using useSSO()
I'm upgrading my Expo app to use Clerk Auth's latest apis for custom social logins using useSSO()
My local build works as intended and I can login with Apple/Google and LinkedIn creds, but when I ...
0
votes
0
answers
28
views
I am building next project and using clerk but getting error import { default as default2 } from "swr"; The export default was not found in module
I am building next project and using clerk but getting error import { default as default2 } from "swr"; The export default was not found in module while this is in node_modules which is only ...
1
vote
0
answers
95
views
How to determine a user’s subscription status in a Rust backend using clerk-rs
I am trying to access if a user is subscribed on the backend of my Website. Looking through the Clerk-rs documentation I cannot find a way to retrieve the if the user is subscribed.
I want to be able ...
0
votes
0
answers
50
views
svelte-clerk library sign-up user does not recieve verification code
It works normal as it should when a user signs up via Google or Facebook, but when it's just email the user gets redirected to /sign-up/verify-email-address, which I have not set up and the user does ...
1
vote
0
answers
519
views
Clerk's Expo Setup Not Working or a Rookie React Native Mistake?
I'm trying to follow Simon Grimm's tutorial on how to integrate Clerk Auth into a React Native app, but so far nothing happens. I've also tried to adapt it to what's on the updated Clerk docs, such as ...
0
votes
1
answer
109
views
Clerk email link signup error: "email_link does not match one of the allowed values for parameter strategy"
I installed the Clerk NextJS library and I’m trying to set up an email link-only signup.
My application’s credentials are correctly provided via the .env file. And in the Clerk application ...
1
vote
1
answer
90
views
VITE REACT Deployment Error - Blank White Screen
I am getting a blank white website build while deploying or running build, I am using Clerk and React.js+ Vite also I am not getting any errors in the console. Anyone is aware of this error. I think ...
0
votes
0
answers
619
views
I am facing an issue with Google Sign-Up using Clerk authentication
When I attempt to sign up directly with Google, I receive a 422 Unprocessable Content error in the network response. The error message states: "oauth_callback does not match one of the allowed ...
0
votes
1
answer
149
views
Flutter with Clerk -- "No `ClerkAuth` found in context"
I'm using clerk_flutter: ^0.0.8-beta authentication for the app I'm building. What I'm trying to do is simple: sign up a user, and display a homepage if successful.
Here's the main.dart file:
import '...
2
votes
0
answers
376
views
Clerk Development Mode Redirect Error with Next.js and Cloudflare Worker Proxy
I'm encountering a specific development mode error with Clerk authentication when using a Cloudflare Worker as a proxy. The application automatically redirects to:
https://[my-worker-url].workers.dev/...
0
votes
0
answers
385
views
Clerk authentication in next js two environment
I have a next JS project and for the authentication it uses Clerk. Now I'm having a trouble I can't run clerk in Hosted and my Local environment both. So I have a Development instance of Clerk and I ...
1
vote
1
answer
127
views
My Next.js app keeps hanging on "Generating static pages"
I am using the latest Canary version of Next.js and I am trying to deploy it on Vercel but it keeps hanging at "Generating static pages":
Creating an optimized production build ...
✓ ...
0
votes
0
answers
137
views
Are there any issues with the following code that secures a Spring Boot API using Clerk?
I have a web app where the frontend is using Next.js with Clerk for authentication. The frontend adds an Authorization header, containing a Bearer token, with each request to the backend.
The backend ...
1
vote
0
answers
264
views
Using Clerk with Gin for Protected Routes to Retrieve Appointments
I'm building a SaaS application for professional masseurs using Gin in Go, and I want to integrate Clerk for authentication. I need to protect some routes (e.g., GET /api/appointments) so that only ...
0
votes
0
answers
87
views
How do I read and write data on firebase based on the authentication status of a user in clerk
I've recently encountered an issue when I tried to read and write data to firebase based on the authentication status of a user in clerk.
Apparently this article shows how you can integrate a user's ...
0
votes
0
answers
123
views
How to Synchronize Clerk Users with Prisma ORM in a React Application?
I am building a React application that uses Clerk for authentication and Prisma ORM to manage users in my database. I want to ensure that users in Clerk are automatically synced with my database when ...
0
votes
2
answers
658
views
Expo (SDK v52) + Clerk Google OAuth: Redirects Successfully but No User Info or Session ID Logged
I'm implementing Google sign-up using Clerk in my Expo app (SDK v52). Here's my component code:
import React from "react"
import * as WebBrowser from "expo-web-browser"
import { ...
0
votes
0
answers
78
views
GitHub GraphQL API authorization via Clerk - JWT template variables not working
I am trying to call the GitHub GraphQL API using Clerk's GitHub authentication on Next.js.
After the user logged in via GitHub (which works flawlessly), the API call to the GitHub GraphQL API is made.
...