正如您在标题中看到的那样,我的问题是在添加标题时出现异常.我要做的是向公众发送一个授权请求
TwitchAPI.这是我要翻译的请求:
原文链接:https://www.f2er.com/vb/255054.htmlcurl -H 'Accept: application/vnd.twitchtv.v3+json' -H 'Authorization: OAuth <access_token>' \ -X GET https://api.twitch.tv/kraken/channel
当我添加Accept标头时,我的脸上会弹出这个异常(标题).我不确定我是否正确翻译了这个,但这是我现在的代码:
Dim wr = CType(WebRequest.Create("https://api.twitch.tv/kraken/channel"),HttpWebRequest) wr.Method = "GET" wr.Headers.Add("Authorization: OAuth <oauth_token>") wr.Headers.Add("Accept: application/vnd.twitchtv.v3+json") Return CType(wr.GetResponse(),HttpWebResponse)
oauth_token是我的访问令牌,谁能为我解决这个问题?真的让我的屁股试图找出这么简单的事情,谢谢!