Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/t1mmen/opauth-trello
- Owner: t1mmen
- Created: 2014-10-31T15:05:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-26T08:42:38.000Z (almost 10 years ago)
- Last Synced: 2024-12-14T20:36:29.594Z (2 months ago)
- Language: PHP
- Size: 150 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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