eripheebs / yammer

Meteor Yammer OAuth flow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yammer OAuth support for Meteor

This is an early draft release - functional, but only just. Don't rely on it for anything mission-critical or sensitive!

Usage

Registering an app with Yammer

See documentation here: https://developer.yammer.com/introduction/#gs-registerapp

Configuration

Using config details generated by Yammer, add the following to, for example a config.js file in your Meteor project:

ServiceConfiguration.configurations.remove({
    service: "yammer"
});

ServiceConfiguration.configurations.insert({
    service: "yammer",
    clientId:  "",
    secret: "",
    loginStyle: "popup"         // "redirect" is the other option
});

Connecting up with accounts

You should probably use this with the rnorth:accounts-yammer package.

About

Meteor Yammer OAuth flow

License:Apache License 2.0


Languages

Language:JavaScript 100.0%