ONLYOFFICE API gem
Ruby Framework to interact with ONLYOFFICE API
Installation
Add this line to your application's Gemfile:
gem 'onlyoffice_api'
And then execute:
bundle
Or install it yourself as:
gem install onlyoffice_api
Usage
First of all, you should configure your enviroment by commands
OnlyOfficeApi.configure do |config|
config.server = 'https://example.onlyoffice.com'
config.username = 'foo'
config.password = 'bar'
config.proxy = Net::HTTP::Proxy('127.0.0.1', 8123)
end
and then call methods you need:
OnlyOfficeApi.people.get_people
Contributing
- Fork it
- 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 new Pull Request
Documentation
Please read ONLYOFFICE API documentation for more information about API methods
Project Information
Official website: https://www.onlyoffice.coom
Code repository: https://github.com/ONLYOFFICE/onlyoffice_api_gem
SaaS version: https://www.onlyoffice.com
License
onlyoffice_api_gem is released under an GNU AGPL v3.0 license. See the LICENSE file for more information.