我正在创建一个webhook来接收来自第三方服务的通知,他们将数据发送到具有内容类型的POST主体中application/x-www-form-urlencoded
.
但它会产生同样的错误:
{"message": "Could not parse request body into json: Unrecognized token \'name\': was expecting \'null\', \'true\', \'false\' or NaN\n at [Source: [B@456fe137; line: 1, column: 6]"}
Run Code Online (Sandbox Code Playgroud)
我可以通过以下curl调用重现错误:
% curl -v -X POST -d 'name=Ignacio&city=Tehuixtla' https://rl9b6lh8gk.execute-api.us-east-1.amazonaws.com/prod/mandrillListener
* Trying 54.230.227.63...
* Connected to rl9b6lh8gk.execute-api.us-east-1.amazonaws.com (54.230.227.63) port 443 (#0)
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
* Server certificate: *.execute-api.us-east-1.amazonaws.com
* Server certificate: Symantec Class 3 Secure Server CA - G4
* Server certificate: VeriSign Class 3 Public Primary Certification Authority …
Run Code Online (Sandbox Code Playgroud) 我已经在svn中结帐了一个项目(针对前Project1)。现在我在Project1中进行了很多更改,现在我不想通过提交更改来更改Project1。我想通过导出包含我的更改的项目来在SVN中创建另一个分支