OneDrive

Welcome to your new gem one_drive! You can use this gem to list your Microsoft OneDrive drives and read and write them. To experiment with that code, run bin/console for an interactive prompt.

Installation

Add this line to your application's Gemfile:

gem 'one_drive'

And then execute:

$ bundle

Or install it yourself as:

$ gem install one_drive

Usage

  1. Initialize

    @one_drive = OneDrive::V1.new(client_id, redirect_uri, scope)

  2. Generate code url to get refresh_token

    @one_drive.code_url

Or Directly generate token url

` @one_drive.token_url `

Visit the url to generate the token

  1. Set your token which you get on visiting the above url

    @one_drive.set_token token Note: only token is required you can leave expires_in and token_type as blank for expires_in=3600 and token_type='bearer'

  2. List out all your drives

    @drives = @one_drive.get_drives

After calling the last function you can fetch last drive list which you fetched by calling

` @one_drive.drives `
  1. Search

  2. Download Item

  3. Recent Drive

  4. Special Folder

  5. My Drive

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/one_drive. 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.

Code of Conduct

Everyone interacting in the OneDrive project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.