Next.js Discord

Discord Forum

Clerk with Nextjs webhooks, getting permanent redirect (308) on testing the webhooks

Unanswered
futuredevengineer posted this in #help-forum
Open in Discord
As the title and screenshot demonstrate. here is my code for route.ts inside api/webhooks folder and my middleware.ts code after that:

import { NextRequest,NextResponse } from "next/server";
import {prisma} from '../../layout'
import { Webhook } from 'svix'
import { headers } from 'next/headers'
import { WebhookEvent } from '@clerk/nextjs/server'
async function POST(req:NextRequest){
    const SIGNING_SECRET = process.env.SIGNING_SECRET
    if (!SIGNING_SECRET) {
      throw new Error('Error: Please add SIGNING_SECRET from Clerk Dashboard to .env or .env')
    }
  
    // Create new Svix instance with secret
    const wh = new Webhook(SIGNING_SECRET)
  
    // Get headers
    const headerPayload = await headers()
    const svix_id = headerPayload.get('svix-id')
    const svix_timestamp = headerPayload.get('svix-timestamp')
    const svix_signature = headerPayload.get('svix-signature')
  
    // If there are no headers, error out
    if (!svix_id || !svix_timestamp || !svix_signature) {
      return new Response('Error: Missing Svix headers', {
        status: 400,
      })
    }
  
    // Get body
    const payload = await req.json()
    const body = JSON.stringify(payload)
  
    let evt: WebhookEvent
  
    // Verify payload with headers
    try {
      evt = wh.verify(body, {
        'svix-id': svix_id,
        'svix-timestamp': svix_timestamp,
        'svix-signature': svix_signature,
      }) as WebhookEvent
    } catch (err) {
      console.error('Error: Could not verify webhook:', err)
      return new Response('Error: Verification error', {
        status: 400,
      })
    }
  
    // Do something with payload
    // For this guide, log payload to console
    const { id } = evt.data
    const eventType = evt.type
    console.log(`Received webhook with ID ${id} and event type of ${eventType}`)
    console.log('Webhook payload:', body)

    }

2 Replies

middleware.ts:

import { clerkMiddleware, createRouteMatcher } from '@clerk/nextjs/server'
const isPublicRoute = createRouteMatcher(['/login(.*)','/signup(.*)',"/api/webhooks(.*)"]);

export default clerkMiddleware(async (auth,req)=>{
    
    if(!isPublicRoute(req)){
        auth.protect()
    }
})


export const config = {
    matcher: [
      // Skip Next.js internals and all static files, unless found in search params
      '/((?!_next|[^?]*\\.(?:html?|css|js(?!on)|jpe?g|webp|png|gif|svg|ttf|woff2?|ico|csv|docx?|xlsx?|zip|webmanifest)).*)',
      // Always run for API routes
      '/(api|trpc)(.*)',
    ],
  }
my ngrok static domain is working normally.