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

Development

>= 0
~> 2.7

Runtime

 Project Readme

omniauth-trello

Trello OAuth strategy for OmniAuth 1.0

OmniAuth Trello

This gem contains the Trello strategy for OmniAuth.

Trello uses the OAuth 1.0 flow, you can read about it here: https://trello.com/docs/gettingstarted/

Installation

gem install liangzan_omniauth-trello

Usage

use OmniAuth::Builder do
  provider :trello,
  ENV['TRELLO_KEY'],
  ENV['TRELLO_SECRET'],
  scope: 'read,write',
  app_name: 'YourApp',
  expiration: 'never'
end

If you don't set expiration, it defaults to 30days. The only other workable option is never.