Error requesting cloud id using get request and access token in node js

const response = await fetch('https://api.atlassian.com/oauth/token/accessible-resources',{
    method:"GET",   
    headers:{
        'Content-Type':'application/json',
        'Authorization':`Bearer ${token}`
   }
})
console.log(response);

In the console the result is {“size”:0,“timeout”:0}.