t1mmen / opauth-wunderlist
Opauth strategy for Wunderlist
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/t1mmen/opauth-wunderlist
Requires
- php: >=5.2.0
- opauth/opauth: >=0.4.0
This package is not auto-updated.
Last update: 2025-10-25 23:32:20 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 IDandClient Secret.
- 
Direct user to http://path_to_opauth/wunderlistto 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)