我正在尝试使用Youtube API v2
with C# 获取刷新的访问令牌。我这样做是这样的:
string _url = "client_id=" + HttpUtility.UrlEncode(_clientID) + "&client_secret=" + HttpUtility.UrlEncode(_clientSecret) + "&refresh_token=" + HttpUtility.UrlEncode(_refreshToken) + "&grant_type=refresh_token";
public string RefreshYoutubeToken(string _url) {
string _response = "";
TcpClient _tcpClient = new TcpClient("accounts.google.com", 443);
Stream _netStream = _tcpClient.GetStream();
SslStream _sslStream = new SslStream(_netStream);
_sslStream.AuthenticateAsClient("accounts.google.com");
{
byte[] _contentAsBytes = Encoding.ASCII.GetBytes(_url.ToString());
StringBuilder _message = new StringBuilder();
_message.AppendLine("POST /o/oauth2/token HTTP/1.1");
_message.AppendLine("Host: accounts.google.com");
_message.AppendLine("Content-Type: application/x-www-form-urlencoded");
_message.AppendLine("Content-Length: " + _contentAsBytes.Length.ToString());
_message.AppendLine("");
byte[] _headerAsBytes = Encoding.ASCII.GetBytes(_message.ToString());
_sslStream.Write(_headerAsBytes);
_sslStream.Write(_contentAsBytes);
}
StreamReader _reader = new StreamReader(_sslStream);
while(true) { // Print the response line by line to the debug stream for inspection.
string _line = _reader.ReadLine();
if(_line == null) { break; }
_response += _line;
if(_line == "0") { break; }
}
return _response;
}
当我第一次登录并检索时,这很好用access token
,但是,当我想使用refresh token
检索新的access token
时,就像他们在 Google Developers 中描述的那样 - https://developers.google.com/youtube/ 2.0/developers_guide_protocol_oauth2#OAuth2_Refreshing_a_Token - 我收到返回错误invalid_grant
。
我在某处读到问题可能来自不同的客户端-服务器日期时间,我得出的结论是,实际上我的客户端日期比服务器晚了大约 3 秒,例如,客户端 12:10:52 和服务器 12:10:55 .
我已经尝试更改客户端日期时间,但没有运气。
有谁知道如何解决这个问题?使用这种方法或其他方法,我只需要刷新access token
.