Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t1mmen/opauth-freckle
Freckle authentication strategy for Opauth
https://github.com/t1mmen/opauth-freckle
Last synced: about 1 month ago
JSON representation
Freckle authentication strategy for Opauth
- Host: GitHub
- URL: https://github.com/t1mmen/opauth-freckle
- Owner: t1mmen
- License: mit
- Created: 2016-03-06T01:35:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-17T23:27:36.000Z (almost 9 years ago)
- Last Synced: 2024-11-14T12:55:07.766Z (3 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Opauth-Freckle
=============
[Opauth][1] strategy for Freckle authentication.Implemented based on http://developer.letsfreckle.com/v2/authentication/
Getting started
----------------
1. Install Opauth-Freckle:Using git:
```bash
cd path_to_opauth/Strategy
git clone https://github.com/t1mmen/opauth-freckle.git freckle
```Or, using [Composer](https://getcomposer.org/), just add this to your `composer.json`:
```bash
{
"require": {
"t1mmen/opauth-freckle": "*"
}
}
```
Then run `composer install`.2. Register a custom application from your Freckle account.
3. Configure Opauth-Freckle strategy with at least `Client ID` and `Client Secret`.
4. Direct user to `http://path_to_opauth/freckle` to authenticate
Strategy configuration
----------------------Required parameters:
```php
array(
'client_id' => 'YOUR CLIENT ID',
'client_secret' => 'YOUR CLIENT SECRET',
'redirect_uri' => 'SAME AS YOUR FRECKLE OAUTH APP REDIRECT_URI'
)
```License
---------
Opauth-Freckle is MIT Licensed
Copyright © 2016 Timm Stokke (http://timm.stokke.me)[1]: https://github.com/opauth/opauth