Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This page serves as a central guide to the documentation.

 Are you using our whitelabel white-label client?  We recommend that you do;  It takes care of caching and authentication, and is designed to make your life easier.

Please familiarize yourself with our API guidelines for app development which lay out guidelines for clients interactions with the server.

API versions

AminoTV has two styles of API:

  • Legacy API
  • REST based 

They are documented separately and we maintain a list of endpoints that are in live service on our page about the AminoTV API Lifecycle

We recommend that you only use the currently supported versions of an endpoint.  Endpoints that are deprecated are frozen and will not receive feature updates.

Quickstart

Authenticate a user

Take a look at our page about Authentication

Code Block
languagejs
themeDJango
titleLogging in
sdk.user.login('me@example.com', '12345678')
  .then(() => {
    // Login successful
  })
  .catch(error => {
    // Login failed
  });