Wolfram API javascript cross origin sharing issue

2019-01-26 18:09发布

How do I get wolfram's api requests to work? I just get cross-origin errors and a blank response: "XMLHttpRequest cannot load http://api.wolframalpha.com/v2/query?input=No&appid=xxx. Origin null(or another site) is not allowed by Access-Control-Allow-Origin."

Code is

var request = new XMLHttpRequest();
request.open("GET", "http://api.wolframalpha.com/v2/query?input=pi&appid=xxx", true);
request.onreadystatechange = function() {
    if(request.readyState == 4) {
        console.log("*"+request.responseText+"*");
    }
}

Thanks a bunch

1条回答
Explosion°爆炸
2楼-- · 2019-01-26 18:24

The Wolfram API does not allow requests from JavaScript. You will need to use a server-side library in order to query the API.

查看更多
登录 后发表回答