我试图发布到Caspio的API - 我已经能够执行POST& GET请求可以很好地获取我的令牌并从Caspio中检索XML数据,尽管使用POST方法将数据恢复到Caspio时遇到问题。在下面的示例中,我将我的身体编码为{"First_Name":"John"}
。
目前我的 415不支持的媒体类型 - 服务器无法为请求提供服务,因为媒体类型不受支持。
var requestPost = new XMLHttpRequest();
function PostWebAPI() {
requestPost.open("POST", "https://c2ezh542.caspio.com/rest/v1/tables/Patient/rows", true);
requestPost.setRequestHeader("Authorization", "Bearer " + token_);
requestPost.send("%7B%22First_Name%22%3A%22John%22%7D");
table operations指定以下内容:
POST表格行
/tables/<name>/rows
答案 0 :(得分:0)
使用以下
AngularApp.run(["Stuff", "Websocket", "$http", "Other", "More", "Etc", "AndSoOn",
function(s, w, $http, o, m, e, a) {
//code
}
]);
}