我正在尝试使用HTTParty在Mailchimp V3列表中添加合并字段,但无法将curl转换为HTTParty格式。
卷曲请求格式,效果很好:

curl --request POST \
     --url 'https://usxx.api.mailchimp.com/3.0/lists/17efad7sd4/merge-fields' \
     --user '12:d1c1d99dr5000c63f0f73f64b88e852e-xx' \
     --header 'content-type: application/json' \
     --data '{"name":"FAVORITEJOKE", "type":"text"}' \
     --include


缺少错误API密钥的Httparty格式

response = HTTParty.post("https://us12.api.mailchimp.com/3.0/lists/17efad7sde/merge-fields",
                :body => {
                  :user => '12:d1c1d99dr5000c63f0f73f64b88e852e-xx',
                  :data =>  '{"name":"FAVORITEJOKE", "type":"text"}',
                  :include => ''
                }.to_json,
                :headers => { 'Content-Type' => 'application/json' } )


我也尝试了没有包含选项但无法正常工作

最佳答案

您的代码中有几个错误。


curl user是基本的auth用户,但是您正在将其传递到请求的有效负载中
数据是有效负载,而是将其作为有效负载中的一个节点传递,然后对它进行双重序列化
包含在那里没有意义,这不是有效载荷项目


这应该是正确的版本。请花一点时间阅读HTTPartycurl文档,并了解它们之间的区别。

HTTParty.post(
  "https://us12.api.mailchimp.com/3.0/lists/17efad7sde/merge-fields",
  basic_auth: { username: "12", password: "d1c1d99dr5000c63f0f73f64b88e852e-xx" },
  headers: { 'Content-Type' => 'application/json' },
  body: {
    name: "FAVORITEJOKE",
    type: "text",
  }.to_json
)

关于ruby-on-rails - 将curl命令转换为httparty,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35629059/

10-10 23:08