PhalApi开源接口框架SDK包,更多请访问:http://www.phalapi.net/
支持的Ruby版本:
- Ruby 2.3.x
在您 Ruby 应用程序的Gemfile
文件中,添加如下一行代码:
gem 'phalapi', '>= 1.3.4'
然后,在应用程序所在的目录下,可以运行bundle
安装依赖包:
$ bundle
或者,可以使用 Ruby 的包管理器gem
进行安装:
$ gem install phalapi
require 'phalapi'
a_client = PhalApi::Client.create.withHost('http://demo.phalapi.net')
a_response = a_client.withService('Default.Index').withParams('username', 'dogstar').withTimeout(3000).request()
puts a_response.ret, a_response.data, a_response.msg
# => 200
# => {"title"=>"Hello World!", "content"=>"dogstar您好,欢迎使用PhalApi!", "version"=>"1.2.1", "time"=>1445741092}
# =>
更多请参考:SDK包(Ruby版)
-
- Fork
-
- 创建您的特性分支
-
- 提交您的改动
-
- 将您的修改记录提交到远程 git 仓库
-
- 发起 Pull Request
Copyright (c) 2015-2016 PhalApi All Rights Reserved.
基于 MIT 协议发布: MIT License。