Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t1mmen/opauth-divvy
Divvy strategy for Opauth, a multi-provider authentication framework for PHP
https://github.com/t1mmen/opauth-divvy
Last synced: about 1 month ago
JSON representation
Divvy strategy for Opauth, a multi-provider authentication framework for PHP
- Host: GitHub
- URL: https://github.com/t1mmen/opauth-divvy
- Owner: t1mmen
- License: mit
- Created: 2015-03-27T15:07:11.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-09T21:57:21.000Z (almost 9 years ago)
- Last Synced: 2024-11-14T12:55:07.776Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Opauth-Divvy
=============
[Opauth][1] strategy for Divvy authentication.Implemented based on https://www.divvy.no
Getting started
----------------
0. Make sure cURL is enabled (required due to header size issues using Opauth's transport method)1. Install Opauth-Divvy:
Using git:
```bash
cd path_to_opauth/Strategy
git clone https://github.com/t1mmen/opauth-divvy.git divvy
```Or, using [Composer](https://getcomposer.org/), just add this to your `composer.json`:
```bash
{
"require": {
"t1mmen/opauth-divvy": "*"
}
}
```
Then run `composer install`.2. Create Divvy application at https://divvy.knowit.no/account
3. Configure Opauth-Divvy strategy with at least `Client ID` and `Client Secret`.
4. Direct user to `http://path_to_opauth/divvy` to authenticate
Strategy configuration
----------------------Required parameters:
```php
array(
'client_id' => 'YOUR CLIENT ID',
'client_secret' => 'YOUR CLIENT SECRET'
)
```License
---------
Opauth-Divvy is MIT Licensed
Copyright © 2015 Timm Stokke (http://timm.stokke.me)[1]: https://github.com/opauth/opauth