Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t1mmen/opauth-campaignmonitor
CampaignMonitor strategy for Opauth, a multi-provider authentication framework for PHP
https://github.com/t1mmen/opauth-campaignmonitor
Last synced: 30 days ago
JSON representation
CampaignMonitor strategy for Opauth, a multi-provider authentication framework for PHP
- Host: GitHub
- URL: https://github.com/t1mmen/opauth-campaignmonitor
- Owner: t1mmen
- Created: 2014-06-24T21:03:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-24T21:22:42.000Z (over 10 years ago)
- Last Synced: 2024-11-14T12:55:08.418Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Opauth-CampaignMonitor
=============
[Opauth][1] strategy for CampaignMonitor authentication.This strategy relies on an API endpoint that is currently stable, but undocumented (```https://api.createsend.com/api/v3.1/me.json```).
Getting started
----------------
1. Install Opauth-CampaignMonitor:Using git:
```bash
cd path_to_opauth/Strategy
git clone https://github.com/t1mmen/opauth-campaignmonitor.git CampaignMonitor
```Or, using [Composer](https://getcomposer.org/), just add this to your `composer.json`:
```bash
{
"require": {
"t1mmen/opauth-campaignmonitor": "*"
}
}
```
Then run `composer install`.2. Create a CampaignMonitor application ([see instructions][2])
3. Configure Opauth-CampaignMonitor strategy with ```client_id```, ```client_secret``` and ```scope``` (See [permissions][2])
4. Direct user to `http://path_to_opauth/campaignmonitor` to authenticate
Strategy configuration
----------------------Required parameters:
```php
array(
'client_id' => 'YOUR CLIENT ID',
'client_secret' => 'YOUR CLIENT SECRET',
'scope' => 'YOUR,SCOPES,HERE'
)
```License
---------
Opauth-CampaignMonitor is MIT Licensed
Copyright © 2014 Timm Stokke (http://timm.stokke.me)[1]: https://github.com/opauth/opauth
[2]: https://www.campaignmonitor.com/api/getting-started/#authenticating_with_oauth