t1mmen/opauth-wunderlist

Opauth strategy for Wunderlist

1.0 2016-03-02 19:59 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:01:47 UTC


README

Opauth strategy for Wunderlist authentication.

Implemented based on https://developer.wunderlist.com/documentation/concepts/authorization

Getting started

  1. 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.

  1. Create Wunderlist application at https://developer.wunderlist.com/apps/new

  2. Configure Opauth-Wunderlist strategy with at least Client ID and Client Secret.

  3. 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)