Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/fmazzant/vimeoclient
- Owner: fmazzant
- License: mit
- Created: 2020-06-21T17:25:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-31T04:58:20.000Z (7 months ago)
- Last Synced: 2024-11-17T12:50:31.070Z (about 2 months ago)
- Topics: vimeo, vimeo-api, wrapper
- Language: C#
- Homepage:
- Size: 281 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.