YandexMusicResolver 5.0.1
See the version list below for details.
dotnet add package YandexMusicResolver --version 5.0.1
NuGet\Install-Package YandexMusicResolver -Version 5.0.1
<PackageReference Include="YandexMusicResolver" Version="5.0.1" />
paket add YandexMusicResolver --version 5.0.1
#r "nuget: YandexMusicResolver, 5.0.1"
// Install YandexMusicResolver as a Cake Addin #addin nuget:?package=YandexMusicResolver&version=5.0.1 // Install YandexMusicResolver as a Cake Tool #tool nuget:?package=YandexMusicResolver&version=5.0.1
YandexMusicResolver
A library aimed at searching, resolving and getting direct links to tracks, playlists or albums in Yandex.Music.
Can work without authorization.
Getting started
Add nuget package to your project:
dotnet add package YandexMusicResolver
Create auth service instance (
YandexMusicAuthService
this is the default implementation):var authService = new YandexMusicAuthService(httpClient);
Actually, preferred way is to use
IHttpClientFactory
to pass it to all services. If you useIHttpClientFactory
default HttpClient name isYandexMusic
.Create credentials provider instance (
YandexCredentialsProvider
this is the default implementation):var credentialProvider = new YandexMusicAuthService(authService, "Login", "Pass");
Create an instance of
YandexMusicMainResolver
and pass config to itvar yandexMusicMainResolver = new YandexMusicMainResolver(credentialProvider, httpClient);
After that we can use
YandexMusicMainResolver
methods and other loaders methods.
Example code for getting direct track download url:
var httpClient = new HttpClient();
var authService = new YandexMusicAuthService(httpClient);
var credentialProvider = new YandexMusicAuthService(authService, "Login", "Pass");
var yandexMusicMainResolver = new YandexMusicMainResolver(credentialProvider, httpClient);
var directUrl = await yandexMusicMainResolver.DirectUrlLoader.GetDirectUrl("55561798");
Console.WriteLine(directUrl);
Warn: Yandex will return a link to a 30-seconds track if you do not log in (do not use a config with a valid token).
You can take a look at unit test project for additional examples.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Http (>= 7.0.0)
- System.Text.Json (>= 7.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.0 | 253 | 8/23/2024 |
6.0.0 | 108 | 8/9/2024 |
6.0.0-preview1 | 104 | 8/9/2024 |
5.1.0 | 339 | 3/5/2023 |
5.0.1 | 225 | 3/5/2023 |
5.0.0 | 212 | 3/5/2023 |
4.0.0 | 502 | 3/14/2021 |
3.3.1 | 399 | 3/7/2021 |
3.3.0 | 414 | 3/7/2021 |
3.2.0 | 296 | 2/19/2021 |
3.1.1 | 305 | 2/19/2021 |
3.1.0 | 311 | 2/19/2021 |
3.0.0 | 343 | 2/3/2021 |
2.2.1 | 336 | 1/28/2021 |
2.1.0 | 339 | 1/15/2021 |
2.0.0 | 343 | 1/10/2021 |
1.0.0 | 559 | 1/9/2021 |
- Removed all `IYandexConfig` infrastructure. Use `IYandexCredentialProvider` or implement your own.
- Remove YandexMusicAuth class, use IYandexMusicAuthService or implement your own.
- All List replaced with IReadOnlyCollections in API
- Make `YandexMusicTrack` ID long instead of string
- Migrate to System.Text.Json and IHttpClientFactory (still can be used with just HttpClient)
- Remove Proxy specifying. Set proxy in IHttpClientFactory or HttpClient.
- Target framework lowered to netstandard2.0
- Change type of IYandexMusicDirectUrlLoader.GetDirectUrl TrackId parameter to long