Orbitvu Public Support Site

Authentication

Updated on

For API access you’ll need Token of type General that can be generated at Orbitvu SUN: My products -> API keys

Using token you can get access to the API passing Authorization HTTP header with the value of:

token <TOKEN>

e.g.:

Authorization: token d0ba713e5e34b3d6b2f4a1002f123a3e58c4d7bc

You should always use https to access API.

The value of Authorization header must contain word token followed by the token value. It will not work if word token is omitted.

Example using Python requests library:

>>> import requests
>>> r = requests.get('https://orbitvu.co/api/v1/.json', headers={'Authorization': 'token d0ba713e5e34b3d6b2f4a1002f123a3e58c4d7bc'})
>>> r.json()
{u'presentations': u'https://orbitvu.co/api/v1/presentations.json'}

Token used in the example above is just for the documentation purposes and it will not allow access to any Orbitvu SUN account. Use your own token instead.

Still Need Help? Contact Us