自从将近一天以来,我一直在努力连接API,我尝试了许多不同的方法,但是都没有奏效。.该应用程序在假服务器上运行良好,但是当Im使用实际的API时,它跳闸了使用他们的VPN。我发送标头的方式是否错误?我以为可能是CORS,但如果派遣邮递员到该邮递员,将得到预期的正确答复。有什么提示吗?
await fetch(
http://url/restservices/cricket/v1/das/SubscriptionServices/Event?func=getEventIdBySubscriptionId&subscription_id=[ID]&event_start=2018-07-12T17:40:49&event_end=2018-07-27T20:40:49`,
{
method: "GET",
headers: new Headers({
Accept: "application/json",
"Access-Control-Allow-Origin": "*",
Authorization:
"Basic [TOKEN]",
"Content-Type": "application/json"
})
}
)