Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fmazzant/vimeoclient

VimeoClient library provides a simple connector to Vimeo REST services.
https://github.com/fmazzant/vimeoclient

vimeo vimeo-api wrapper

Last synced: 6 days ago
JSON representation

VimeoClient library provides a simple connector to Vimeo REST services.

Awesome Lists containing this project

README

        

# 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.

```c#
VimeoClient.Vimeo client = new VimeoClient.Vimeo(new VimeoProperties
{
AccessToken = "MyAccessToken",
ClientSecret = "MyClientSecret",
ClientId = "MyClientId",
ValidCertificates = new List() { "Vimeo certs" }
});
```

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

```c#
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.