Я пытаюсь преобразовать этот рабочий код
auth = new AuthorizationCodeAuth(
_clientId,
_secretId,
"http://localhost:4002",
"http://localhost:4002",
Scope.UserReadPrivate | Scope.UserReadEmail | Scope.UserModifyPlaybackState | Scope.UserReadCurrentlyPlaying | Scope.UserReadPlaybackState
);
в этот код
var client = new RestClient("https://accounts.spotify.com/authorize");
var request = new RestRequest(Method.GET);
request.AddParameter("client_id", _clientId);
request.AddParameter("response_type", "code");
request.AddParameter("redirect_uri", "http://localhost:4002/");
request.AddParameter("scope", "user-read-private user-read-email user-modify-playback-state user-read-currently-playing user-read-playback-state");
IRestResponse response = client.Execute(request);
string res = response.Content;
Но я продолжаю получать server_error в качестве ответа. Так как первый блок работает, я знаю, что мой clientID, редирект uri et c правильный.
Есть идеи? :)
Франк.