我创建与Tastypie的API,我想从主干网接入的API。 要发送的凭据我使用USER_ID和API_KEY。 我这样做是在Android和与卷曲这项工作很好,但我可以设置从骨干网的HTTP标头。
在袅袅我使用:
curl --dump-header - -H "Accept: application/json" -H "Content-Type: application/json" -H "user_id: 32" -H "api_key: 69950" -X DELETE "http://127.0.0.1:8000/api/v1/deletenote/66/?format=json"
在Android的Java的使用:
HttpDelete requestDELETE = new HttpDelete();
requestDELETE.setHeader("Content-type", "application/json");
requestDELETE.setHeader("Accept", "application/json");
requestDELETE.setHeader(Constants.HEADER_USER_ID, user_id);
requestDELETE.addHeader(Constants.HEADER_API_KEY, key);
他们都工作很好,但是当我尝试这在骨干以下是我从其他页面发现后的响应,这没有奏效。
我想这一点:
var removeNote = new DeleteNoteModel({id:this.model.toJSON().id},{ query:this.model.toJSON().id});
removeNote.destroy({
headers: {'user_id':dataWeb.get("id"),'api_key':dataWeb.get("api_key")}
},{
async:false,
error: function(model, response){
console.log("KO_REMOVE_NOTE");
console.log(response);
},
success : function(model, response){
console.log("OK_REMOVE_NOTE");
console.log(response);
}
}
);
我把标题时,我打电话到呼叫摧毁,但这不发送anithing到服务器。
我在做什么在一个错误的模式?
谢谢大家。