可与我尝试过的其他api一起使用,但在某些情况下无法与Steam一起使用 原因。
在以下位置访问XMLHttpRequest 来自的“ http://api.steamapis.com/market/app/730?api_key=secretKey” 原点“ null”已被CORS政策阻止:否 请求中存在“ Access-Control-Allow-Origin”标头 资源。
var url = 'http://api.steamapis.com/market/app/730?api_key={SecretKey}';
var data;
axios.get(url)
.then(receiveData)
.catch(handleError);
function receiveData(response) {
// handle success
data = response.data;
console.log(data);}
function handleError(error) {
// handle error
console.log(error);
}