Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t1mmen/opauth-harvest
Harvest strategy for Opauth, a multi-provider authentication framework for PHP
https://github.com/t1mmen/opauth-harvest
Last synced: 30 days ago
JSON representation
Harvest strategy for Opauth, a multi-provider authentication framework for PHP
- Host: GitHub
- URL: https://github.com/t1mmen/opauth-harvest
- Owner: t1mmen
- Created: 2014-10-29T13:50:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-31T09:45:48.000Z (over 10 years ago)
- Last Synced: 2024-11-13T12:44:48.233Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Opauth-Harvest
=============
[Opauth][1] strategy for Harvest authentication.Implemented based on https://github.com/harvesthq/api
Getting started
----------------
1. Install Opauth-Harvest:Using git:
```bash
cd path_to_opauth/Strategy
git clone https://github.com/t1mmen/opauth-harvest.git Harvest
```Or, using [Composer](https://getcomposer.org/), just add this to your `composer.json`:
```bash
{
"require": {
"t1mmen/opauth-harvest": "*"
}
}
```
Then run `composer install`.2. Create Harvest application at https://platform.harvestapp.com/oauth2_clients
3. Configure Opauth-Harvest strategy with at least `Client ID` and `Client Secret`.
4. Direct user to `http://path_to_opauth/harvest` to authenticate
Strategy configuration
----------------------Required parameters:
```php
array(
'client_id' => 'YOUR CLIENT ID',
'client_secret' => 'YOUR CLIENT SECRET'
)
```License
---------
Opauth-Harvest is MIT Licensed
Copyright © 2014 Timm Stokke (http://timm.stokke.me)[1]: https://github.com/opauth/opauth