Repro API Client
$ gem install repro-client
or add to your Gemfile
gem 'repro-client'
require 'repro/client'
client = Repro::Client.new('repro_api_token')
user_ids = [1, 2, 3]
payload = { message: 'Hello Repro!' }
client.push('push_id', user_ids, payload)
{
message: 'Hello Repro!',
deeplink_url: 'url',
sound: 'sound'
}
You need to set the content as Hash
require 'repro/client'
client = Repro::Client.new('repro_api_token')
user_id = 'user-123'
payload = [{ key: 'Job', type: 'string', value: 'Developer' }]
client.update_user_profiles(user_id, payload)
Ruby 2.4.0 or higher