无法使用POSTMAN发送发帖请求

时间:2018-10-02 00:25:37

标签: javascript node.js postman

我正在尝试给https://api2.realtor.ca/Listing.svc/PropertySearch_Post打电话。

我可以使用节点库 realtorca 来执行此操作,但是我想使用Postman进行此调用。我显然对Postman和这些REST呼叫是陌生的,所以我度过了艰难的时光。

当我看着realtorca.js时,它基本上是

return request({
            method: 'POST',
            uri: API_URL,
            form: form,
            json: true
        });

其中API_URL为'https://api2.realtor.ca/Listing.svc/PropertySearch_Post' 形式是

{ CultureId: 1,
  ApplicationId: 1,
  PropertySearchTypeId: 1,
  LongitudeMin: -81.277602,
  LongitudeMax: -81.271602,
  LatitudeMin: 43.038275,
  LatitudeMax: 43.044275 }

我知道这很简单,但是我尝试了很多不同的变体,无法弄清楚。

2 个答案:

答案 0 :(得分:1)

对我有用的x-www-form-urlencoded发布

enter image description here

答案 1 :(得分:0)

通常,当我使用Postman时,必须在对象的变量名上使用引号。

也许尝试 { "CultureId": 1, "ApplicationId": 1, "PropertySearchTypeId": 1, "LongitudeMin": -81.277602, "LongitudeMax": -81.271602, "LatitudeMin": 43.038275, "LatitudeMax": 43.044275 }