stephenyeargin / yammer-oauth2-php
An OAuth2 Wrapper for Yammer
Installs: 7 363
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 11
Open Issues: 0
Requires (Dev)
README
PHP wrapper for Yammer's API.
Install
Install with Composer:
$ composer require stephenyeargin/yammer-oauth2-php
Usage
Example configuration array passed to constructor:
$config['consumer_key'] = '1ABCdefhiJKLmnop';
$config['consumer_secret'] = 'ABCdefhi_JKLmnop';
$config['callbackUrl'] = 'http://' . $_SERVER['SERVER_NAME'] . '/yammer/callback/';
$yammer = new YammerPHP\YammerPHP($config);
Starting the callback process:
// Redirect the user to the OAuth page for your application header('Location: ' . $yammer->getAuthorizationUrl());
Upgrading the callback code to an authorization token:
$code = $_GET['code']; $token = $yammer->getAccessToken($code);
Using the token (either from a fresh process or saved in the database)
$yammer->setOAuthToken($token);
Making a call with the $yammer
instance:
if (!$yammer->testAuth()) { // Handle this. } // Retrieve feed for authenticated user try { $feed = $yammer->get('messages/my_feed.json'); print_r($feed); } catch (YammerPHPException $e) { print 'Error: '; print $e->getMessage(); }