This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Examples
dmillz edited this page Jan 10, 2013
·
14 revisions
API calls are subject to the whims of internet connectivity, and may throw an exception for any number of reasons:
- The Brightcove API may be down or not functioning correctly.
- Network connectivity may be lost between your application and Brightcove.
- Invalid parameters passed to the API may result in an error message in the response JSON. The message will be wrapped in a BrightcoveApiException and thrown so that it may be handled via normal .NET error handling mechanisms.
Although the examples shown here do not include try/catch blocks, in order to ensure that your app is as robust as possible make sure to try/catch all API calls.
- See how to work with the BrightcoveApi object on the Getting Started page.
- See how to customize the way HTTP requests to the API are performed.
- Known issues
#Examples
-
- Find all videos in your account, 100 at a time
- Find the top 10 most played videos
- Find a video by ID
- Find a video by reference ID
- Find a video's HTTP download links
- [Find a video by ID, and retrieve custom field values] (https://github.com/BrightcoveOS/.NET-MAPI-Wrapper/wiki/Video-read-examples#wiki-find-by-id-custom-field)
- [Search for a video by all/any/none parameters] (https://github.com/BrightcoveOS/.NET-MAPI-Wrapper/wiki/Video-read-examples#wiki-search-by-any-all-none-parameters)
- [Search for videos by a combination of any/all/none parameters with multiple sorts (verbose)] (https://github.com/BrightcoveOS/.NET-MAPI-Wrapper/wiki/Video-read-examples#wiki-search-by-any-all-none-parameters-with-multiple-sorts-method-one)
- [Search for videos by a combination of any/all/none parameters with multiple sorts (convenient)] (https://github.com/BrightcoveOS/.NET-MAPI-Wrapper/wiki/Video-read-examples#wiki-search-by-any-all-none-parameters-with-multiple-sorts-method-two)
- Enumerate all the videos in your account