-
Notifications
You must be signed in to change notification settings - Fork 10
Authorize and proxy
Stanislav edited this page Feb 8, 2019
·
1 revision
Authorization is optional for working with the API
For authorization, you can use the following solution:
var yandexApi = new YandexMusicApi();
yandexApi.Authorize("login", "password");
login - your yandex login password - your yandex password
You can use a proxy to interact with the API. Example:
yandexApi.UseWebProxy(new ...)
Proxy usage is also optional.