14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
const apiKey = process.env.CONNECTOR;
|
|
|
|
const result = fetch('https://api.my-mc.link/my-hash',{
|
|
method: "GET",
|
|
headers: {
|
|
'Accept': 'application/json', 'Content-Type': 'application/json', 'x-my-mc-auth': apiKey}
|
|
})
|
|
.then(async response => {
|
|
const r = await response.json();
|
|
if (r.success == true) {
|
|
console.log(r.message);
|
|
}
|
|
})
|