Я пытаюсь получить ответ от запроса
axios.get('https://testnet.bitmex.com/api/v1/trade/bucketed?binSize=1d&partial=false&symbol=XBT&count=100&reverse=true')
.then(response => response.json())
.then(json => console.log('json',json))
Код ошибки 403.
GET https://testnet.bitmex.com/api/v1/trade/bucketed?binSize=1d&partial=false&symbol=XBT&count=100&reverse=true 403 ()
Failed to load https://testnet.bitmex.com/api/v1/trade/bucketed?binSize=1d&partial=false&symbol=XBT&count=100&reverse=true: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access. The response had HTTP status code 403.
Если же вставить в бразуер
https://testnet.bitmex.com/api/v1/trade/bucketed?b...
то все работает. Почему ?
Нужно добавить какие-то заголовки к axios ? Но какие ?