A Ruby gem for interacting with the Demio API.
Add this line to your application's Gemfile:
gem "demio-ruby", require: "demio"
And then execute:
$ bundle
Or install it yourself as:
$ gem install demio-ruby
Retrieve your API key and API secret from here and initialize the client:
client = Demio::Client.new(
api_secret: "YOUR API SECRET",
api_key: "YOUR API KEY"
)
Actions | Methods |
---|---|
List events | #events |
Fetch an event | #event(event_id) |
Fetch event date info | #event_date(event_id, event_date_id) |
Fetch participants list | #participants(event_date_id) |
Register a registrant | #register(payload = {}) |
Ping | #ping |
Examples
client = Demio::Client.new(
api_secret: "YOUR API SECRET",
api_key: "YOUR API KEY"
)
payload = {
"id": 56458,
"name": "Jane Doe",
"email": "[email protected]"
}
response = client.register(payload)
response.code
# => "200"
JSON.parse(response.body)
# => {"hash"=>"ADv07WFv0RNDQZoF", "join_link"=>"https://event.demio.com/simulated-webinar/ADv07WFv0RNDQZoF"}
After checking out the repo, run bin/setup
to install dependencies. Then, run rake
to run the tests and rubocop. You can also run bin/console
for an interactive prompt that will allow you to experiment.
Bug reports and pull requests are welcome on GitHub at here. 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.
- Fork it ( https://github.com/samudary/demio-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the project’s codebases and ther environments is expected to follow the code of conduct.