jive-sdk
Version:
Node.js SDK for Jive Software to assist with the development of add-ons
15 lines (11 loc) • 336 B
JavaScript
var sampleOauth = require('./sampleOauth.js');
exports.authorizeUrl = {
'path' : '/oauth/authorizeUrl',
'verb' : 'get',
'route': sampleOauth.authorizeUrl.bind(sampleOauth)
};
exports.oauth2Callback = {
'path' : '/oauth/oauth2Callback',
'verb' : 'get',
'route': sampleOauth.oauth2Callback.bind(sampleOauth)
};