我正在尝试向Alpaca Trading的API发出get请求,并将我的密钥ID和密钥作为标头传递,但我似乎无法弄清楚?当我将它们传递给Postman时,它返回ok,但是当我在提取中使用它时,它不起作用?
fetch(alpaca_end_pt, {
method: 'GET',
withCredentials: 'true',
credentials: 'include',
mode: 'no-cors',
headers: {
'APCA-API-KEY-ID': alpaca_key_id,
'APCA-API-SECRET-KEY': alpaca_secret_key,
'Content-Type': 'text/plain'
}
})