No commit activity in last 3 years
No release in over 3 years
OmniAuth strategy for Backlog
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
>= 0
~> 10.0

Runtime

 Project Readme

Omniauth::Backlog

This is omniauth strategy for authenticating to your Backlog service used OAuth 2.0 style.

Backlog is project management tools served by Nulab Inc.

Installation

Add this line to your application's Gemfile:

gem 'omniauth-backlog'

And then execute:

$ bundle

Or install it yourself as:

$ gem install omniauth-backlog

Usage

Backlog is managed by space-id, used backlog url (ex. https://xxxx.backlog.jp). Backlog's oauth endpoint uses space url. so it need to configure space-id.

use OmniAuth::Builder do
    provider :backlog, ENV['CLIENT_ID'], ENV['CLIENT_SERCRET'],
      :space_id => 'yourspaceid'
end

It can set site-url directly.

use OmniAuth::Builder do
  provider :backlog, ENV['CLIENT_ID'], ENV['CLIENT_SERCRET'],
    :client_options => {
      :site => 'https://yourspaceid.backlog.jp'
    }
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/attakei/omniauth-backlog.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

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