Skip to content

CloudIDEaaS-zz/hootsuite-rest

 
 

Repository files navigation

hootsuite-rest

A node client for Hootsuite's REST API.

Usage

Installation

npm install hootsuite-rest --save

Creating a connection

You will first need to obtain your OAuth information from Hootstuite, they have a guide out to get you started. In short, you will need to get the client id and client secret.

var Hootsuite = require('hootsuite-rest');

var hootsuite = new Hootsuite({
  clientId: 'client id',
  clientSecret: 'client secret'
});

hootsuite.me.get()
  .then(function(data) {
  });

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C# 73.3%
  • JavaScript 23.2%
  • PowerShell 3.2%
  • Other 0.3%