stephenyeargin/yammer-oauth2-php

An OAuth2 Wrapper for Yammer

v1.0.0 2015-11-09 04:02 UTC

This package is auto-updated.

Last update: 2024-03-23 13:06:22 UTC


README

CI Build and Test

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();
}