17

Google Apps Script を使用して JSON をペイロードとして取得することを期待している Web サービスに POST しようとしています。私は次のコードを使用しています:

var options =
{
  "method" : "post",
  "contentType" : "application/json",
  "headers" : {
    "Authorization" : "Basic <Base64 of user:password>"  
  },
  "payload" : { "endDate": "2012-06-03" }
};

var response = UrlFetchApp.fetch("http://www.example.com/service/expecting/json", options);

サーバー側で次のエラーが発生します。

WARN [facade.SettingsServlet] 04 Jun 2012 15:30:26 - Unable to parse request body: endDate=2012-06-03
net.liftweb.json.JsonParser$ParseException: unknown token e

サーバーが取得することを期待していると仮定しています

{ "endDate": "2012-06-03" }

それ以外の

endDate=2012-06-03

しかし、私はそれを行う方法がわかりませんUrlFetchApp

4

4 に答える 4

18

サーバー側のエラーはわかりませんが、'payload' パラメータはhttps://developers.google.com/apps-script/class_urlfetchapp?hl=fr-FR#fetchで指定されている文字列でなければなりません。

試す:

var options =
{
  "method" : "post",
  "contentType" : "application/json",
  "headers" : {
    "Authorization" : "Basic <Base64 of user:password>"  
  },
  "payload" : '{ "endDate": "2012-06-03" }'
};
于 2012-06-05T08:50:53.340 に答える
-1

いくつかの重要なコメントで動作するはずのコードを次に示します。

function testMe() {
    var products_authkey = "------------";
    try {
        var url = "https://app.ecwid.com/api/v1/---------/product?id=----------&secure_auth_key=" + products_authkey;
        //url= "http://requestb.in/----------"; // you can actually debug what you send out with PUTs or POSTs using Requestb.in service
        var payload = {
            id: "21798583", // id is necessary and should be a string, or it might be sent in scientific representation (with E)
            price: 62755
        }; 

        payload = JSON.stringify(payload); // the payload needs to be sent as a string, so we need this
        var options = {
            method: "put",
            contentType: "application/json", // contentType property was mistyped as ContentType - case matters
            payload: payload
        }; 
        var result = UrlFetchApp.getRequest(url, options);
        Logger.log(result) // a better way to debug
        var result = UrlFetchApp.fetch(url, options); // works perfectly in my case
        Logger.log(result)
    } catch (e) {
        Logger.log(e)
    }
}
于 2013-09-17T13:20:30.313 に答える