Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 676 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 676 Bytes

VimeoClient

VimeoClient is a extendible .NET wrapper for Vimeo API v3.2.

By Mafe.RestClient library it can be possible to develop a vimeo webapi call.

VimeoClient.Vimeo client = new VimeoClient.Vimeo(new VimeoProperties
{
    AccessToken = "MyAccessToken",
    ClientSecret = "MyClientSecret",
    ClientId = "MyClientId",
    ValidCertificates = new List<string>() { "Vimeo certs" }
});

Now, you are using client to call a Vimeo rest methods. You can access to user information

var user = client.Me.GetTheUser(); //myself
var user = client.Users.GetTheUser(userId); //other users

The library is in temporary status and it is working in progress.