有时,在调用https://api.spotify.com/v1/me
端点时,我收到502错误的网关错误。这种错误偶尔会发生。
我将不胜感激任何帮助。谢谢!
代码:
PublicProfile profile = null;
var url = "https://api.spotify.com/v1/me";
using (var wc = new WebClient())
{
wc.Headers.Add("Authorization", TokenType + " " + AccessToken);
var response = wc.DownloadString(url);
profile = JsonConvert.DeserializeObject<PublicProfile>(response, settings);
}
答案 0 :(得分:1)
我有同样的问题。大多数时候,当我发出此请求时,我得到了502:Bad Gateway响应。偶尔我会得到一个实际的回应。我正在使用Python和rauth库来提出这个请求,这让我相信这是Spotify的最终结果而不是我们的错误。