t1mmen / opauth-wunderlist
Opauth strategy for Wunderlist
1.0
2016-03-02 19:59 UTC
Requires
- php: >=5.2.0
- opauth/opauth: >=0.4.0
This package is not auto-updated.
Last update: 2024-12-21 19:21:27 UTC
README
Opauth strategy for Wunderlist authentication.
Implemented based on https://developer.wunderlist.com/documentation/concepts/authorization
Getting started
-
Install Opauth-Wunderlist:
Using git:
cd path_to_opauth/Strategy git clone https://github.com/t1mmen/opauth-wunderlist.git wunderlist
Or, using Composer, just add this to your composer.json
:
{ "require": { "t1mmen/opauth-wunderlist": "*" } }
Then run composer install
.
-
Create Wunderlist application at https://developer.wunderlist.com/apps/new
-
Configure Opauth-Wunderlist strategy with at least
Client ID
andClient Secret
. -
Direct user to
http://path_to_opauth/wunderlist
to authenticate
Strategy configuration
Required parameters:
<?php 'Wunderlist' => array( 'client_id' => 'YOUR CLIENT ID', 'client_secret' => 'YOUR CLIENT SECRET' )
License
Opauth-Wunderlist is MIT Licensed Copyright © 2016 Timm Stokke (http://timm.stokke.me)