We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9ec593 commit 8168483Copy full SHA for 8168483
app/api/route.js
@@ -3,7 +3,7 @@ export async function POST(req) {
3
const { token } = await req.json();
4
if (!token) return new Response(JSON.stringify({ success: false, error: "Token missing" }), { status: 400 });
5
6
- const secret = "6Le5ktwrAAAAADFattJUJnb-UtonC7JKGZviH6Vi";
+ const secret = "";
7
8
try {
9
const response = await fetch(
@@ -24,4 +24,4 @@ export async function POST(req) {
24
return new Response(JSON.stringify({ success: false, error: err.message }), { status: 500 });
25
}
26
27
-
+
0 commit comments