RyuzakiH / SoundCloud.Api

Full C# API wrapper for SoundCloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SoundCloud.Api

Full C# API wrapper for SoundCloud

Config Status
CI Build status
Release (v1.1) Build status

Installation

Install it using NuGet:

Install-Package SoundCloud.Api

or download the latest archive from the release page.

Usage

Use the SoundCloudClient to access the resources provided by SoundCloud:

string accessToken = "your access token here";
ISoundCloudClient client = SoundCloudClient.CreateAuthorized(accessToken);

IEnumerable<Tracks> myTracks = client.Me.GetTracks();

If you don't want to perfom a login, you can also access the resources by only providing your ClientId. Use this instead:

string clientId = "your client id here";
ISoundCloudClient client = SoundCloudClient.CreateUnauthorized(clientId);

Please read the wiki for additional informations.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT License

About

Full C# API wrapper for SoundCloud

License:MIT License


Languages

Language:C# 99.6%Language:PowerShell 0.4%