POST application/x-www-form-urlencoded 正文到 REST API 使用 Jitterbit

POST application/x-www-form-urlencoded Body to REST API using Jitterbit

我知道我以前做过这个,但我现在正在思考如何正确地做它。

我正在尝试调用 Paylocity 令牌 API。使用 cURL 和 Postman 就可以了。但是,我不记得如何在 Jitterbit 中正确发送正文。这是我尝试发送的 cURL 信息,但它没有获取有效负载数据,并且总是 returns 无效授权类型错误。

--data-urlencode 部分是我记不住的内容。

curl --location --request POST 'https://api.paylocity.com/IdentityServer/connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Basic XXXXX=' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'scope=WebLinkAPI'

George Jeffcock 为我指出了正确的方向。问题是额外的换行符。这 link 指出。

https://community.jitterbit.com/s/question/0D54X0000687kiZSAQ