SoundCloud.API.Client icon indicating copy to clipboard operation
SoundCloud.API.Client copied to clipboard

It's .NET client for SoundCloud API https://developers.soundcloud.com/docs/api/reference

Results 6 SoundCloud.API.Client issues
Sort by recently updated
recently updated
newest added

Hi there! Error 400 bad request at System.Net.HttpWebRequest.GetResponse() at SoundCloud.API.Client.Internal.Infrastructure.Network.WebGateway.GetResponse(WebRequest request, Func`3 buildExceptionMessage) in C:\Users\WilsonMoreno\Downloads\ConsoleApp1\ConsoleApp1\SoundCloud.API.Client\Internal\Infrastructure\Network\WebGateway.cs:line 156 Headers: {Content-Type: application/jsonContent-Length: 0Accept-Encoding: gzip, deflate} address: https://api.soundcloud.com/oauth2/token?client_id=CLIENT_ID&client_secret=CLIENTE_SECRET&grant_type=password&username=USERNAME&password=PASSWORD First of all, I'm checking using...

https://github.com/kipwoker/SoundCloud.API.Client/blob/7f86adcfda9f66b61df6730141f241a303342e36/SoundCloud.API.Client/Internal/Infrastructure/Objects/Uploading/File.cs#L15-L23

```csharp string tmpMp3FilePath = $@"/tmp/track.mp3"; string tmpCoverFilePath = $@"/tmp/cover.jpg"; var fileMp3Stream = File.OpenRead(tmpMp3FilePath); var fileCoverStream = File.OpenRead(tmpCoverFilePath); var client = new SoundCloudConnector().DirectConnect(this.clientId, this.clientSecret, this.username, this.password); client.Tracks.UploadTrack(fileMp3Stream, upload.name, "", SCSharing.Private, null);...

The Offset parameter does not work anymore, it always just returns the same first "page" of 50 results, whatever the offset. It was replaces by linked partitioning in 2015. https://developers.soundcloud.com/blog/offset-pagination-deprecated...

Hello KipWoker, are u still actively maintaining this API? I've adapted the source code to make it portable, but I was a bit disappointed to see that the pagination is...

I'm getting strange behavior when trying to access the track stream. The is further complicated by the fact that it is not consistent across all tracks. Some tracks will occasionally...

bug