CrossRef Search API(docs here)提供来自DOI标识符的引文信息。我tried使用它来获取此信息,但奇怪的是得到404回复。
我设置的标题是
Content-type: application/json
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, POST, OPTIONS
Access-Control-Allow-Headers: Content-Type
Access-Control-Max-Age: 86400
我从this appspot tester得到了相同的结果,所以我不认为这是我的代码。
任何人都可以建议我如何让它发挥作用?它在他们自己的领域工作得很好。
他们可能根本不允许跨域,但我不确定是否/如何检查。
可重复的例子:
function doiInfo(doi) {
var doienc = encodeURIComponent(doi);
var doiXHR;
window.XMLHttpRequest ? doiXHR=new XMLHttpRequest() : doiXHR=new ActiveXObject("Microsoft.XMLHTTP");
doiXHR.onreadystatechange=function()
{
if (doiXHR.readyState==4 && doiXHR.status==200)
{
console.log(doiXHR.responseText);
} else if (doiXHR.readyState==4) {
// something went wrong
}
}
doiXHR.open("GET", "http://search.crossref.org/dois?q=" + doienc, true);
doiXHR.setRequestHeader("Content-type", "application/json;");
doiXHR.setRequestHeader("Access-Control-Allow-Origin", "*");
doiXHR.setRequestHeader("Access-Control-Allow-Methods", "GET, POST, OPTIONS");
doiXHR.setRequestHeader("Access-Control-Allow-Headers", "Content-Type");
doiXHR.setRequestHeader("Access-Control-Max-Age", "86400"); // cache for 1 day
// doiXHR.withCredentials = "true";
doiXHR.send();
}
doiInfo('10.1002/bies.201000071')
在crossref.org
的浏览器控制台中,我得到了
[
{
"doi": "http://dx.doi.org/10.1002/bies.201000071",
"score": 18.623272,
"normalizedScore": 100,
"title": "The phage-host arms race: Shaping the evolution of microbes",
"fullCitation": "Adi Stern, Rotem Sorek, 2010, 'The phage-host arms race: Shaping the evolution of microbes', <i>BioEssays</i>, vol. 33, no. 1, pp. 43-51",
"coins": "ctx_ver=Z39.88-2004&rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1002%2Fbies.201000071&rfr_id=info%3Asid%2Fcrossref.org%3Asearch&rft.atitle=The+phage-host+arms+race%3A+Shaping+the+evolution+of+microbes&rft.jtitle=BioEssays&rft.date=2010&rft.volume=33&rft.issue=1&rft.spage=43&rft.epage=51&rft.aufirst=Adi&rft.aulast=Stern&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.au=Adi+Stern&rft.au=+Rotem+Sorek",
"year": "2010"
}
]
从我的网站(而不是https)运行它我
选项http://search.crossref.org/dois?q=10.1002%2Fbies.201000071 404(未找到) XMLHttpRequest无法加载http://search.crossref.org/dois?q=10.1002%2Fbies.201000071。无效的HTTP状态代码404
除了GET
/ OPTIONS
问题,它肯定会在页面上显示404,这似乎不正确。
我认为你可以使用iframe和window.postMessage
(?)解决它,但这听起来很混乱。
请评论我是否可以提供更多细节,我会很高兴,似乎没有人在网上做过这件事 - 希望不是因为这是不可能的!
答案 0 :(得分:1)
回答问题的标题:是的,它允许跨域请求。 404表示错误的资源。跨性别问题会给你一个401。
allow-origin标头表示可以从所有位置访问资源。看看我的工作示例:http://pastebin.com/8W23P48Z