opauth / live
Live Connect strategy for Opauth
Installs: 4 145
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 10
Forks: 7
Open Issues: 1
Requires
- php: >=5.2.0
- opauth/opauth: >=0.2.0
This package is auto-updated.
Last update: 2024-10-13 10:42:23 UTC
README
Opauth strategy for (Microsoft) Live Connect authentication.
Confusingly, Live Connect is (was) also known as:
- Windows Live
- Microsoft Passport
- Live ID
- MSN ID
Opauth is a multi-provider authentication framework for PHP.
Getting started
-
Install Opauth-Live:
cd path_to_opauth/Strategy git clone git://github.com/opauth/live.git Live
or
composer require opauth/live
-
Create a Live Connect application at https://account.live.com/developers/applications
- Once application is created, be sure to go to My apps > API Settings to define your redirect domain to be
http://path_to_opauth/live/oauth2callback.
- Once application is created, be sure to go to My apps > API Settings to define your redirect domain to be
-
Configure Opauth-Live strategy.
-
Direct user to
http://path_to_opauth/live
to authenticate -
If
email
field is needed, addwl.emails
to scope parameter inLiveStrategy.php
(line 38). E.g.,'scope' => 'wl.basic wl.emails'
.
Strategy configuration
Required parameters:
<?php 'Live' => array( 'client_id' => 'YOUR CLIENT ID', 'client_secret' => 'YOUR CLIENT SECRET' )
Optional parameters:
scope
, state
References
License
Opauth-GitHub is MIT Licensed
Copyright © 2012 U-Zyn Chua (http://uzyn.com)