我实际上在使用SparQL查看器,但是我的POST请求出了问题,有人可以告诉我出错了什么?
var req = { method: 'POST',
url: 'http://dbpedia.org/sparql',
headers: { 'Content-type' : 'application/x-www-form-urlencoded',
'Accept' : 'application/sparql-results+json' },
data: { query : "SELECT * WHERE { <http://dbpedia.org/resource/Awolnation> ?pref ?obj } LIMIT 10",
format: "sparql-results+json",
timeout : 3000 }
};
$http(req).success(function(data) {
console.log(data);
});
编辑:我的错,我忘了这个问题
POST http://dbpedia.org/sparql 400 (Bad Request)
答案 0 :(得分:1)
我认为这是一个GET查询,format=json
喜欢:
var req = {
method: 'GET',
url: 'http://dbpedia.org/sparql',
headers: { 'Content-type' : 'application/x-www-form-urlencoded',
'Accept' : 'application/sparql-results+json' },
params: {
query : "SELECT * WHERE { <http://dbpedia.org/resource/Awolnation> ?pref ?obj } LIMIT 10",
format: "json"
}
};
当Dbpedia端点未关闭时,它可以工作:)。