opauth / yammer
Yammer authentication strategy for Opauth
Installs: 20 189
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=5.2.0
- opauth/opauth: >=0.4.0
This package is auto-updated.
Last update: 2024-10-27 13:49:19 UTC
README
Opauth strategy for Yammer authentication.
Implemented based on https://developer.yammer.com/authentication/ using OAuth2.
Opauth is a multi-provider authentication framework for PHP.
Demo: http://opauth.org/#yammer
Getting started
-
Install Opauth-Yammer:
cd path_to_opauth/Strategy git clone git://github.com/andrej-griniuk/opauth-yammer.git Yammer
-
Register a Yammer application at http://www.yammer.com/client_applications
- Enter Website as your application URL (this can be outside of Opauth)
- Redirect URI: enter
http://path_to_opauth/yammer/oauth2callback
-
Configure Opauth-Yammer strategy with
client_id
andclient_secret
. -
Direct user to
http://path_to_opauth/yammer
to authenticate
Strategy configuration
Required parameters:
<?php 'Yammer' => array( 'client_id' => 'YOUR CLIENT ID', 'client_secret' => 'YOUR CLIENT SECRET' )
License
Opauth-Yammer is MIT Licensed Copyright © 2014 Andrej Griniuk