We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { headers } from "next/headers"; import Stripe from "stripe"; import { ConvexHttpClient } from "convex/browser"; import { stripe } from "@/lib/stripe"; import { env } from "process"; import { api } from "../../../../../convex/_generated/api"; const convex = new ConvexHttpClient(process.env.NEXT_PUBLIC_CONVEX_URL!); export async function POST(req: Request) { const body = await req.text(); const signature = headers().get("Stripe-Signature") as string; if (!env.STRIPE_WEBHOOK_SECRET) { return new Response("Missing STRIPE_WEBHOOK_SECRET", { status: 500 }); } let event: Stripe.Event;
throws
Call Stack eval node_modules\.pnpm\[email protected]_@[email protected][email protected][email protected][email protected]__react-do_a6pe3624vgfhu2tivlhxgo7czi\node_modules\convex\dist\esm\browser\simple_client-node.js (12:1) ../common/temp/node_modules/.pnpm/[email protected][email protected][email protected]/node_modules/ws/lib/stream.js node_modules\.pnpm\[email protected]_@[email protected][email protected][email protected][email protected]__react-do_a6pe3624vgfhu2tivlhxgo7czi\node_modules\convex\dist\esm\browser\simple_client-node.js (38:20)
The text was updated successfully, but these errors were encountered:
Ok fixed it by changing to:
const response = await fetch( `${process.env.NEXT_PUBLIC_CONVEX_URL}/api/query?path=users:getUserByClerkId`, { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ args: { clerkId: userId }, }), } );
I'll leave the ticket open as the issue stands with the package
Sorry, something went wrong.
No branches or pull requests
throws
The text was updated successfully, but these errors were encountered: