const data = await $fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ "application_id": APPLICATION_ID, "access_token": access_token, }) })
const data = await $fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: { "application_id": APPLICATION_ID, "access_token": access_token, } })