Method | Description | |
---|---|---|
DeleteVideo ( string videoId ) : void |
Used to remove video from Vippy. Vippy endpoint: DELETE http://rest.vippy.co/video
|
|
GetEmbedCode ( |
Used to get HTML code for embedding Vippy endpoint: GET http://rest.vippy.co/embedvideo
|
|
GetLogo ( string logoId ) : Task |
Used to get logo from Vippy Vippy endpoint: GET http://rest.vippy.co/logo
|
|
GetLogos ( ) : Task |
Used to get all the logos from Vippy. Vippy endpoint: GET http://rest.vippy.co/logos
|
|
GetPlayers ( ) : Task |
Used to get all the players from Vippy. Vippy endpoint: GET http://rest.vippy.co/players
|
|
GetTags ( string archiveId ) : Task |
Used to get all the tags from this Vippy archive. Vippy endpoint: GET http://rest.vippy.co/archivetags
|
|
GetVideo ( string videoId, bool withStatistics = false ) : Task |
Used to get video from Vippy. Vippy endpoint: GET http://rest.vippy.co/video
|
|
GetVideoThumbnails ( string videoIds ) : Task |
Used to get all the thumbnails for provided videos. Vippy endpoint: GET http://rest.vippy.co/videothumbnails
|
|
GetVideos ( bool withStatistics = false ) : Task |
Used to get all the video from Vippy. Vippy endpoint: GET http://rest.vippy.co/videos
|
|
PostVideo ( |
Used to update information of existing video. Vippy endpoint: POST http://rest.vippy.co/video
|
|
PutVideo ( |
Used to upload new video. Vippy endpoint: PUT http://rest.vippy.co/video
|
|
VippyWrapper ( string apiKey, string secretKey ) : System |
Instantiating of wrapper. We recommend that you use an IoC of some so you don't have to instansiate a new instance of this wrapper all the time.
|
Method | Description | |
---|---|---|
GenerateAuthorizationHeader ( |
||
GetHashedSignature ( string apiSecretKey, string signature ) : string | ||
GetHttpClient ( ) : |
||
GetPresentation ( string presentationId ) : Task |
Used to get presentation from Vippy Vippy endpoint: GET http://rest.vippy.co/presentation
|
|
GetPresentations ( ) : Task |
Used to get all the presentations from Vippy Vippy endpoint: GET http://rest.vippy.co/presentations
|
|
ToVippyBool ( bool condition ) : string |
public DeleteVideo ( string videoId ) : void | ||
videoId | string | Video id |
return | void |
public GetEmbedCode ( |
||
getEmbedCodeRequest | ||
return | Task |
public GetTags ( string archiveId ) : Task |
||
archiveId | string | Login to vippy.co, tools -> Archives, at the bottom you have the archive number. |
return | Task |
public GetVideo ( string videoId, bool withStatistics = false ) : Task | ||
videoId | string | Video id |
withStatistics | bool | Use true to get information about plays, views ..., when false default values returned |
return | Task |
public GetVideoThumbnails ( string videoIds ) : Task |
||
videoIds | string | Array of video ids |
return | Task |
public GetVideos ( bool withStatistics = false ) : Task |
||
withStatistics | bool | Use true to get information about plays, views ..., when false default values returned |
return | Task |
public PostVideo ( |
||
postVideoRequest | ||
return | void |
public PutVideo ( |
||
newVideoRequest | ||
return | Task |
public VippyWrapper ( string apiKey, string secretKey ) : System | ||
apiKey | string | Api key for Vippy |
secretKey | string | Secret key for Vippy |
return | System |