cine.io Ruby的安装与使用
安装
将此行添加到应用程序的Gemfile中:
gem 'cine_io'
然后执行:
$ bundle
或者自己安装:
$ gem install cine_io
用法
初始化:
require('cine_io')
client = CineIo::Client.new(secretKey: 'YOUR_SECRET_KEY', masterKey: 'YOUR_MASTER_KEY')
项目
获取有关您的项目的数据:
project = client.projects.index # => [CineIo::Project, …]
获取项目详情:
project = client.projects.show(id: 'PROJECT_ID')
API参考
暂无评论