File size: 575 Bytes
3444669
a874265
3444669
6fa5e4b
3444669
 
47eb5bf
a874265
 
 
 
3444669
 
47eb5bf
3444669
 
47eb5bf
3444669
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { NextRequest } from "next/server";
import { getIP } from "../../auth";

export async function POST(req: NextRequest) {
  try {
    const mail=req.nextUrl.searchParams.get("mail")
    let res=await fetch("https://eladmin.dwzynj.top/api/code/registerEmail?email="+mail, {
      method: "POST",
      headers:{
        "UserIp": String(getIP(req))
      }
    })
    let msg=await res.json()
    // console.log(res.status)
    return new Response(JSON.stringify(msg))
  } catch (e) {
    console.error("[eladmin] ", e);
    return new Response(JSON.stringify(e));
  }
}