const response = await fetch(env.ENDPOINT, {
method: "POST",
headers: {
Authorization: `Basic ${btoa(
`someKey`
)}]`,
"Content-Type": "application/x-www-form-urlencoded"
},
body: "someBody"
});
const response = await fetch(env.ENDPOINT, {
method: "POST",
headers: {
Authorization: `Basic ${btoa(
`someKey`
)}]`,
"Content-Type": "application/x-www-form-urlencoded"
},
body: "someBody"
});