What's in the package
This is the second release of the Viddler.Net wrapper for the Viddler API. The first release can be found at
http://www.afanaat.nl/index.php/2008/08/20/first-release-of-viddlernet/This release implements the following Viddler methods:
- viddler.api.getInfo
- viddler.users.auth
- viddler.users.getProfile
- viddler.users.setProfile
- viddler.videos.getRecordToken
- viddler.videos.upload
- viddler.videos.getStatus
- viddler.videos.getDetails
- viddler.videos.getDetailsByUrl
- viddler.videos.getByUser
- viddler.videos.getByTag
- viddler.videos.getFeatured
The following methods are not yet implemented in this release:
- viddler.users.register
- viddler.users.setOptions
- viddler.videos.setDetails
- viddler.videos.setPermalink
- viddler.videos.comments.add
- viddler.videos.comments.remove
For more information on the methods, please check out the API documentation at:
http://wiki.developers.viddler.com/index.php/Viddler_API
How to use Viddler.Net in you own projects
To be able to use Viddler.Net in your own projects you need to request an API key first. You can request your key at
http://wiki.developers.viddler.com/index.php/API_KEYOnce you obtained your key you can start using Viddler.Net. To do so you need to add a reference to Avanade.ViddlerNet.dll inside the bin folder of the zip file found at this page. You also need to add a specific configuration section to the web.config / app.config of your application. Add the following line to the top of your configuration file, between the <configSections> tags:
<section name="viddlerNetSettings" type="Avanade.ViddlerNet.Settings, Avanade.ViddlerNet, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
Furthermore you need to define the section in your configuration file. Add the following line to your configuration file, below the configSections tags, but between the <configuration> tags:
<viddlerNetSettings apiKey="yourViddlerApiKey" baseUrl="http://api.viddler.com/rest/v1/" />
That's it! Enjoy and please give your feedback!