Video/Get
Description: Obtain information on a video.
Example of function call:
http://api.nimbb.com/Video/Get.aspx?key=PUBLIC_KEY&code=PRIVATE_KEY&guid=VIDEO_GUID
where you replace the values:
PUBLIC_KEY: your developer public key;
PRIVATE_KEY: your developer private key;
VIDEO_GUID: the video GUID.
Example of XML response:
<?xml version="1.0" encoding="utf-8" ?>
<nimbb version="1">
<video>
<guid>XXXXXXXXXX</guid>
<length>4.103</length>
<fileSize>52748</fileSize>
<dateCreated>2009-05-22T19:35:29.617-04:00</dateCreated>
<dateExpires>2009-06-23T17:51:56-04:00</dateExpires>
<totalViews>18</totalViews>
<dateLastView>2009-05-25T11:58:34.54-04:00</dateLastView>
<dateMoved>0001-01-01T05:00:00-05:00</dateMoved>
<site>blog.d2soft.com</site>
<custom>optional_custom_data</custom>
</video>
</nimbb>
The node <custom> holds a value only if the value was provided to the Nimbb Player when recording the video using the parameter custom.
Go back to Web Service documentation.