30 lines
1002 B
C#
30 lines
1002 B
C#
using System.Net;
|
|
using System.Net.Http.Headers;
|
|
|
|
using YandexMusic.API.Common;
|
|
using YandexMusic.API.Requests.Common;
|
|
using YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
namespace YandexMusic.API.Requests.Account
|
|
{
|
|
[YPassportRequest(WebRequestMethods.Http.Post, "registration-validations/textcaptcha")]
|
|
internal class YGetAuthCaptchaBuilder : YRequestBuilder<Models.Account.YAuthCaptcha, string>
|
|
{
|
|
public YGetAuthCaptchaBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
|
{
|
|
}
|
|
|
|
protected override HttpContent GetContent(string tuple)
|
|
{
|
|
return new FormUrlEncodedContent(new Dictionary<string, string> {
|
|
{ "csrf_token", storage.AuthToken.CsfrToken },
|
|
{ "track_id", storage.AuthToken.TrackId },
|
|
});
|
|
}
|
|
|
|
protected override void SetCustomHeaders(HttpRequestHeaders headers)
|
|
{
|
|
headers.Add("X-Requested-With", "XMLHttpRequest");
|
|
}
|
|
}
|
|
} |