博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决方案
阅读量:6770 次
发布时间:2019-06-26

本文共 1147 字,大约阅读时间需要 3 分钟。

https://stackoverflow.com/questions/5957185/rest-client-ruby-gem-headers

 

@result = RestClient.post(          'url',          {:billingSourceCode => "code"},          {:headers => {'Content-Type' =>'application/json',                        "Authorization" => "key",                         "Accept" => "application/json"},                       {:cookies => {:session_id => "1234"}}          }) The params for the email is not in quotes. {"email": email@example.com, "password": password}. 
hHeader = {"X-AppSecretToken" => 'tokenID1_sanitized', "X-AgreementGrantToken" => 'tokenID2_sanitized', "Content-Type" => 'application/json'}hCustomer = RestClient.get("https://restapi.e-conomic.com/customers/5", hHeader) # => creates a response showing customer 5 (shown for example of GET)
body = {'address' => 'Example Street', 'name' => 'John Doe'}.to_jsonRestClient.post "https://restapi.e-conomic.com/customers/", body, hHeader)
 
RestClient.post(  "http://URL_REDACTED",  '{ "rtdt":"09/08/2016","jobs":[{"pid":53} , {"pid":54}]}',  content_type: :json,   accept: :json,  "HTTP_USER" => "userid")
 

  

转载于:https://www.cnblogs.com/znsongshu/p/8024843.html

你可能感兴趣的文章
我的友情链接
查看>>
Centos7 mount/ rpm/ yum 软件仓库搭建
查看>>
EC2上源安装vnstat
查看>>
高性能Web服务之varnish应用详解及实战应用
查看>>
我的友情链接
查看>>
CentOS 6网卡名称修改 以及 centos7 采用传统命名方式
查看>>
Maven 中的jar包冲突
查看>>
lvs基于fwm定义集群服务
查看>>
awk 系列Part3:如何使用 awk 按模式筛选文本或字符串
查看>>
用cxfreeze打包Python3.3成exe文件
查看>>
关于c语言内存地址对齐的一点思考
查看>>
Unity3D游戏开发之《愤怒的小鸟》弹弓实现的技能培训
查看>>
重点掌握HTTP协议
查看>>
软件公司 之 老马与新马
查看>>
golang 并发二(调度)
查看>>
Scala的bounds
查看>>
Zookeeper之——关于Zookeeper的那些事
查看>>
我的友情链接
查看>>
linux 下动态链接库的制作与使用
查看>>
java项目中logger一般使用 static final
查看>>