Skip to content

DustinH/wistia.net

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wistia .NET API Wrapper

This library is meant to be used with the Wistia API.

You'll need API credentials to interact with the Wistia V1 API, which you can get by generating credentials within your account settings.

Getting Started

Install the nuget:

Install-Package Wistia.Core

Sample Code

Check out the Unit Tests for usage examples.

View the account details:

var dataClient = new WistiaDataClient(apiKey: "123abc");
var result = dataClient.Account.Get();
var statsClient = new WistiaStatsClient(apiKey: "123abc");
var result = statsClient.Account.Get();

Supported Endpoints

Contributing

What to contribute:

  • Check out the project's issues page
  • Refactor something that looks messy to you!

How to contribute:

  • Fork the project.
  • Implement your feature on a topic branch.
  • Add tests for it. This is important so we don't break it in a future version unintentionally.
  • Commit, do not mess with the nuspec, version, or history. If you want to have your own version, that's fine but bump version in a commit by itself that we can ignore when we pull.
  • Send us a pull request.

Copyright

Copyright (c) 2014 Kori Francis, See LICENSE.txt for further details.

Packages

No packages published

Languages

  • C# 100.0%