如何使用RestSharp检索包含访问令牌的回调URL

时间:2018-06-21 03:56:11

标签: c# spotify restsharp

我正在发出API GET请求以对Spotify的身份验证服务器进行获取,以获得访问令牌。令牌在回调URL中返回。

参考(隐式身份验证流程):https://developer.spotify.com/documentation/general/guides/authorization-guide/

我使用:

var client = new RestClient("https://accounts.spotify.com");

var request = new RestRequest("authorize", Method.GET);
request.AddParameter("client_id", "fa6430fc389d47ad8678d34459552fc4"); 
request.AddParameter("response_type", "token");
request.AddParameter("redirect_uri", "http://localhost:51952/home/SpotifyReturn");

// execute the request
IRestResponse response = client.Execute(request);
var content = response.Content;

要利用回调响应,我在Home控制器中有一个名为ActionResult的{​​{1}}

SpotifyReturn

但是,此操作无法运行。。回调已在我的Spotify开发者控制台中注册,我没有收到“无效的回调URL错误”(只是FYI)。

我的基本误解在哪里?感谢您的帮助!

0 个答案:

没有答案