将此$ ajax请求发布到REST API

时间:2016-03-03 15:32:03

标签: ajax api httpwebrequest fiddler

我有这个ajax POST代码,它直接在浏览器上运行,但是当我想在Fiddler或SoapUI上使用相同数据或使用httpClient或HttpWebPost进行POST时它不起作用,总是返回ERRROR。下面是Ajax代码和Fiddler。提前谢谢。

$.ajax({
type: "POST",
url: "http://IP/address/post/something",
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
dataType: "text",

data:
{ message: 'testMessage', destination: '8888888888', campaign: 'UATTest', agent: 'TestingAgent'}
,
success: function (resp) {
if (resp != "ERROR") {
} else {
}
},
error: function (e) {
}
});

enter image description here

更新:

有人知道如何使用FormParam使用REST API吗?它与JSON和XML有何不同?

PARAMS: @FormParam(" destination"),@ FormParam(" message"),@ FormParam(" campaign"),@ FormParam(" agent" )

0 个答案:

没有答案