For Some Reason, I am getting this error when using stripe API in node-fetch. Error: TypeError: Cannot use 'in' operator to search for 'signal' in
{"method":"post","headers":{"Content-Type":"application/json","Authorization":"Bearer API KEY"},"body":{"type":"card","card[number]":"4000000000000077","card[exp_month]":"01","card[exp_year]":"2023","card[cvc]":"235"}}
When I try other solutions and JSON.parse() it, then I get an invalid token error.
Here is the code to reproduce the problem:
async function payCreator(product){
var price1 = product.price.replace("$","")
var price2 = price1.replace(".","")
var price3 = price2 *product.quantity
//charge customer
var url = "https://api.stripe.com/v1/payment_methods";
var params1 = {
method: "post",
headers: headers,
body: {"type": "card", "card[number]": product.card,"card[exp_month]": product.month,"card[exp_year]": product.year,"card[cvc]": product.cvc}
};
var params2 = JSON.stringify(params1)
console.log(params2)
var params = params1
var res = await fetch(url, (params2));
var result = await res.json();
return JSON.stringify(result)
Any solution appreciated