Project

umengo

0.0
No commit activity in last 3 years
No release in over 3 years
Umeng ruby sdk
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.12
~> 10.0
~> 3.0

Runtime

~> 0.9
~> 2.15
 Project Readme

Umengo

Inspiration comes from umeng

Installation

Add this line to your application's Gemfile:

gem 'umengo'

And then execute:

$ bundle

Or install it yourself as:

$ gem install umengo

Usage

  • params require :data, :payload, :body

  • params optional :extra, :extra, :policy

Android push params

    android_params = {
      data: {
        alias_type: "xx",
        alias: "xx",
        file_id: "xx",
        filter: {},
        production_mode: "true/false",
        description: "xx",
        thirdparty_id: "xx"
      },
      payload: {
        display_type: "notifcation/message"
      },
      body: {
        ticker: "xxx",
        title: "xxx",
        text: "content",
        after_open: "xx",
        activity: "xx"
        icon: "xx",
        largeIcon: "xx",
        img: "xx",
        sound: "xx",
        builder_id: "xx",
        play_vibrate: "true/false",
        play_lights:" true/false",
        play_sound: "true/false",
        url: "xx",
        custom: "xx"/{}
      }
      extra: {
        key1: "value1",
      },
      policy: {
        start_time: "xx",
        expire_time: "xx",
        max_send_num: "xx",
        out_biz_no: "xx"
      }
    }

Ios push params

    ios_params = {
      data: {
        alias_type: "xx",
        alias: "xx",
        file_id: "xx",
        filter: {},
        production_mode: "false",
        description: "xx",
        thirdparty_id: "xx"
      },
      body: {
        alert: "content",
        badge: "xx",
        sound: "xx",
        "content-available" => "xx",
        category: "xx"
        icon: "xx",
        largeIcon: "xx",
        img: "xx",
        sound: "xx",
        builder_id: "xx",
        play_vibrate: "true/false",
        play_lights:" true/false",
        play_sound: "true/false",
        url: "xx",
        custom: "xx"/{}
      }
      extra: {
        key1: "value1",
      },
      policy: {
        start_time: "xx",
        expire_time: "xx",
        max_send_num: "xx",
        out_biz_no: "xx"
      }
    }
plantform = "ios/android"
client = Umengo::Client.new(appkey, app_master_secret, plantform)
broadcast
client.broadcast(android_params)
unicast
client.unicast(device_tokens, android_params)
listcast
client.listcast(device_tokens, android_params)

Development

TODO

  • Spec tests
  • Make the parameters more easily assembled
  • ios and android more easily distinguish

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/umengo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.