RSS

Knowledge Base/Developer - Media API

Media API Introduction

Administrator Feb 17

Introduction

movidoe's  Media Application Programming Interface (API) allows developers to interact with the platform through web-services. API's are based on the REST principles. Where each request can be an HTTP POST or GET, and the response is a gziped content (If client specified that gzip is supported).

Security

To prevent unauthorised access to the metadata the API is protected with tokens that are passed as a parameter when making API calls. To generate a token an authentication call must be made with your API Key and Application Alias.
Once you have the token it passed along with all API requests. The token has a session time out of 2 hours.

For more details:

http://support.movideo.com/forums/83838-developer-rest-api/entries/...

Example Authentication Call

http://api.v2.movideo.com/rest/session?key=demo&applicationalia...

Example Response

<session>
<applicationAlias>demo</applicationAlias>
<ipAddress>192.168.1.1</ipAddress>
<created>2009-11-04T10:45:47+1100</created>
<token>dcbe5137-3197-4a91-987f-33b71efc27a8</token>
<clientAlias>demo</clientAlias>
<clientId>1</clientId>
</session>

Media API Console

To help developers learn the Media API we have developed a Media API Console which allows you to experiment with your own meta-data.
This console give you access to all the available API calls and their various formats.