Skip to content

amponce/tubebuddy_notify_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tube_buddy_notification_api

TubeBuddyNotificationApi - JavaScript client for tube_buddy_notification_api TubeBuddy tweet notifications This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen

Installation

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install tube_buddy_notification_api --save

git

If the library is hosted at a git repository, e.g. https://github.com/YOUR_USERNAME/tube_buddy_notification_api then install it via:

    npm install YOUR_USERNAME/tube_buddy_notification_api --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var TubeBuddyNotificationApi = require('tube_buddy_notification_api');

var api = new TubeBuddyNotificationApi.AdminsApi()

var opts = { 
  'item': new TubeBuddyNotificationApi.Item() // {Item} Add user to system
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.addUser(opts, callback);

Documentation for API Endpoints

All URIs are relative to https://virtserver.swaggerhub.com/tubebuddy/tbtweet/1.0.0

Class Method HTTP request Description
TubeBuddyNotificationApi.AdminsApi addUser POST /tubebuddy adds twitter user
TubeBuddyNotificationApi.DevelopersApi searchUsers GET /tubebuddy searches users

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.

About

Api for creating mock twitter users

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published