not able to configure clerk webhook to sync with mongodb
Unanswered
Pembroke Welsh Corgi posted this in #help-forum
Pembroke Welsh CorgiOP
I'm trying to create a user in mongo db using Clerk with webhooks. As you can see in the screenshots, mongo db has 0 users and in webhooks the attempt is success and creates a user, but It's not sending to mongo db the user info. I'm using ngrok to test it locally. Do you know what could be the issue? Also i test the api and it works
33 Replies
and do you receive a request in server? Have you configured the webhook uri in clerk
Pembroke Welsh CorgiOP
yeah
api/webhooks/route.ts
export async function POST(req: Request) {
const WEBHOOK_SECRET = process.env.WEBHOOK_SECRET;
if (!WEBHOOK_SECRET) {
throw new Error(
"Please add WEBHOOK_SECRET from Clerk Dashboard to .env or .env.local"
);
}
const headerPayload = headers();
const svix_id = (await headerPayload).get("svix-id");
const svix_timestamp = (await headerPayload).get("svix-timestamp");
const svix_signature = (await headerPayload).get("svix-signature");
if (!svix_id || !svix_timestamp || !svix_signature) {
return new Response("Error occured -- no svix headers", {
status: 400,
});
}
const payload = await req.json();
const body = JSON.stringify(payload);
const wh = new Webhook(WEBHOOK_SECRET);
let evt: WebhookEvent;
try {
evt = wh.verify(body, {
"svix-id": svix_id,
"svix-timestamp": svix_timestamp,
"svix-signature": svix_signature,
}) as WebhookEvent;
} catch (err) {
console.error("Error verifying webhook:", err);
return new Response("Error occured", {
status: 400,
});
}
const { id } = evt.data;
const eventType = evt.type;
if (eventType === "user.created") {
const { id, email_addresses, image_url, first_name, last_name, username } =
evt.data;
const user = {
clerkId: id,
email: email_addresses[0].email_address,
username: username!,
photo: image_url!,
firstName: first_name,
lastName: last_name,
};
console.log(user);
const newUser = await createUser(user);
if (newUser) {
const client = await clerkClient();
await client.users.updateUserMetadata(id, {
publicMetadata: {
userId: newUser._id,
},
});
}
return NextResponse.json({ message: "New user created", user: newUser });
}
console.log(`Webhook with and ID of ${id} and type of ${eventType}`);
console.log("Webhook body:", body);
return new Response("", { status: 200 });
}
api/data/route.ts
export async function GET() {
const { userId } = await auth();
const user = await currentUser();
if (!userId) {
return NextResponse.json({ message: "Not Authenticated" }, { status: 401 });
}
return NextResponse.json(
{
message: "Authenticated",
data: { userId: userId, username: user?.username },
},
{ status: 200 }
);
}
actions/user.action.ts
export async function createUser(user: any) {
try {
await connect();
const newUser = await User.create(user);
return
JSON.parse(JSON.stringify(newUser));
} catch (error) {
console.log(error);
}
}
db.ts
const MONGO_URI = process.env.MONGO_URI!;
interface MongooseConn {
conn: Mongoose | null;
promise: Promise<Mongoose> | null;
}
@typescript-eslint/no-explicit-any
let cached: MongooseConn = (global as any).mongoose;
if (!cached) {
@typescript-eslint/no-explicit-any
cached = (global as any).mongoose = {
conn: null,
promise: null,
};
}
export const connect = async () => {
if (cached.conn) return cached.conn;
cached.promise =
cached.promise ||
mongoose.connect(MONGO_URI, {
dbName: "modules",
bufferCommands: false,
connectTimeoutMS: 30000,
});
cached.conn = await cached.promise;
return cached.conn;
};
when clerk sends a webhook, can you try console logging?
Pembroke Welsh CorgiOP
i dont understand how to do that
you mean to check the api/webhooks in the browser
or?
i get it now
add console.log statement on api route (which webhook will trigger)
@Pembroke Welsh Corgi I'm trying to create a user in mongo db using Clerk with webhooks. As you can see in the screenshots, mongo db has 0 users and in webhooks the attempt is success and creates a user, but It's not sending to mongo db the user info. I'm using ngrok to test it locally. Do you know what could be the issue? Also i test the api and it works
uhm is there a reason u use clerk? It seems like the way u do it is pretty unconventional
https://authjs.dev/ is almost the same as clerk and integrates directly in your app
@gin uhm is there a reason u use clerk? It seems like the way u do it is pretty unconventional
Quick Integration. Better security
it manages email sending so you don't have to
DX
<SignIn /> Component
@gin uhm is there a reason u use clerk? It seems like the way u do it is pretty unconventional
I had a question, why are you just trying to avoid solving a question by suggesting a alternative, when the original question can be solved.
Auth provider is based on a personal preference
Auth provider is based on a personal preference
@gin https://authjs.dev/ is almost the same as clerk and integrates directly in your app
Pembroke Welsh CorgiOP
It's a project for school and it doesn't matter what I use. I thought clerk is the easiest to integrate and to create a user in mongo by using webhooks. Apparently I was wrong.
@Anay-208 | Ping in replies when clerk sends a webhook, can you try console logging?
Pembroke Welsh CorgiOP
now its working for github authentication, i see the user created in mongo db ,but for google its not working cause its not authorized clerk to send data.
but for google its not working cause its not authorized clerk to send data.Wdym by that?
Pembroke Welsh CorgiOP
also i get this error
Error verifying webhook: Error [WebhookVerificationError]: No matching signature found
at POST (file://C%3A/Users/crist/Desktop/modules.shop/app/api/webhooks/route.ts:46:13)
44 |
45 | try {
> 46 | evt = wh.verify(body, {
| ^
47 | "svix-id": svix_id,
48 | "svix-timestamp": svix_timestamp,
49 | "svix-signature": svix_signature,
POST /api/webhooks 400 in 162ms
I think its because of the signature, but i check again and everything is correct
Pembroke Welsh CorgiOP
I add, but same result
i dont figure out which might be the problem
did you enter the Uri right?
You can contact clerk support for it or their discord server
@Anay-208 | Ping in replies You can contact clerk support for it or their discord server
Pembroke Welsh CorgiOP
yes. i did
@Anay-208 | Ping in replies You can contact clerk support for it or their discord server
Pembroke Welsh CorgiOP
I guess that is the best solution to contact them
Thank you for support!