BaiduPush

The ruby wrapper of baidu push.

Installation

Add this line to your application’s Gemfile:

gem 'baidu_push'

And then execute:

$ bundle

Or install it yourself as:

$ gem install baidu_push

Usage

```ruby api_key = ‘your_api_key’ secret_key = ‘your_secret_key’ # Create a client client = BaiduPush::Client.new(api_key, secret_key)

Set resource of client

client.resource = ‘your_channel_id’ # Query bindlist client.query_bindlist

Push messages

messages = { title: ‘title’, description: ‘desc’ } client.push_msg 3, messages, ‘android-test’, message_type: 1 ``` >For more examples refer to the official doc.

Required params:

ruby def query_bindlist(params = {}) def push_msg(push_type, messages, msg_keys, params = {}) def init_app_ioscert(name, description, release_cert, dev_cert, params = {}) def update_app_ioscert(params = {}) def delete_app_ioscert(params = {}) def query_app_ioscert(params = {}) def verify_bind(user_id, params = {}) def fetch_msg(user_id, params = {}) def fetch_msgcount(user_id, params = {}) def delete_msg(user_id, msg_ids, params = {}) def set_tag(tag, params = {}) def fetch_tag(params = {}) def delete_tag(tag, params = {}) def query_user_tags(user_id, params = {}) def query_device_type(params = {}) Optional params refer to the official doc.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request