Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/t1mmen/opauth-trello

Trello strategy for Opauth, a multi-provider authentication framework for PHP
https://github.com/t1mmen/opauth-trello

Last synced: about 1 month ago
JSON representation

Trello strategy for Opauth, a multi-provider authentication framework for PHP

Awesome Lists containing this project

README

        

Opauth-Trello
=============
[Opauth][1] strategy for Trello authentication.

Implemented based on https://trello.com/docs/index.html

Getting started
----------------
1. Install Opauth-Trello:

Using git:
```bash
cd path_to_opauth/Strategy
git clone https://github.com/t1mmen/opauth-trello.git Trello
```

Or, using [Composer](https://getcomposer.org/), just add this to your `composer.json`:

```bash
{
"require": {
"t1mmen/opauth-trello": "*"
}
}
```
Then run `composer install`.

2. Create Trello application at https://trello.com/1/appKey/generate

3. Configure Opauth-Trello strategy with at least `Key` and `Secret`.

4. Direct user to `http://path_to_opauth/trello` to authenticate

Strategy configuration
----------------------

Required parameters:

```php
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)

[1]: https://github.com/opauth/opauth