Opauth-Trello
[Opauth][1] strategy for Trello authentication., (*1)
Implemented based on https://trello.com/docs/index.html, (*2)
Getting started
-
Install Opauth-Trello:, (*3)
Using git:, (*4)
cd path_to_opauth/Strategy
git clone https://github.com/t1mmen/opauth-trello.git Trello
Or, using Composer, just add this to your composer.json:, (*5)
{
"require": {
"t1mmen/opauth-trello": "*"
}
}
Then run composer install., (*6)
-
Create Trello application at https://trello.com/1/appKey/generate, (*7)
-
Configure Opauth-Trello strategy with at least Key and Secret., (*8)
-
Direct user to http://path_to_opauth/trello to authenticate, (*9)
Strategy configuration
Required parameters:, (*10)
<?php
'Trello' => array(
'key' => 'YOUR CLIENT KEY',
'secret' => 'YOUR CLIENT SECRET',
// Optionally, specify:
'name' => 'YOUR APP NAME (appears in auth screen)',
'expiration' => 'never',
'scope' => 'read,write'
)
License
Opauth-Trello is MIT Licensed
Copyright © 2015 Timm Stokke (http://timm.stokke.me), (*11)