项目不再维护开发。欢迎 PR,我会尽快合并发布新版本。
在你项目的 Gemfile
文件添加下行内容:
gem 'elong'
保存后执行:
$ bundle
或者直接执行下行命令安装:
$ gem install elong
user = ''
appKey = ''
secretKey = ''
client = Elong::Client.new(user, appKey, secretKey)
respone = client.house.list(CityId: '0101',
ArrivalDate: '2013-10-1',
DepartureDate: '2013-10-7',
PageSize: 20))
response = client.hotel.order.cancel(OrderId:'237864278346',
CancelCode:'对酒店相关条件不满意')
无需在意文档中某些接口必须调用
https
协议的接口,代码已经帮你处理好了,调用就行了!
puts response.status
puts response.code
puts response
puts response.body
puts response.to_s
以上方式均可。
返回 JSON 结构化数据(基于 mutli_json)
jsonData = response.to_json
返回 XML 解析数据格式(基于 mutli_xml)
xmlDom = response.to_xml
支持 ox, libxml, nokogiri, rexml 解析器,比如:
xmlDom = response.to_xml(:nokogiri)
使用中对代码有疑惑,请浏览源码中 spec 中的代码,里面包含了大量的代码用例。
填写 spec/spec_hepler.rb
中必要的 API 设定可以跑通完整的测试用例。
- Fork 本仓库
- 创建你自己的 feature 分支 (
git checkout -b my-new-feature
) - 提交你的代码 (
git commit -am 'Add some feature'
) - 提交你的分支 (
git push origin my-new-feature
) - 创建一个新的 Pull Request