在Google文档中说
// Once the user authorizes with Google, the request token can be exchanged
// for a long-lived access token. If you are building a browser-based
// application, you should parse the incoming request token from the url and
// set it in OAuthParameters before calling GetAccessToken().
但它没有说或显示如何做到这一点:(
有没有人知道如何为桌面应用做到这一点?
非常欢迎代码示例!
答案 0 :(得分:9)
好的,过了一段时间我才解决了。
获得访问令牌后,您还会获得刷新令牌。存储该令牌!
同时执行此操作parameters.AccessToken = StoredRefreshToken
和parameters.RefreshToken = StoredRefreshToken
在您拨打下一个请求之前OAuthUtil.RefreshAccessToken(parameters);
然后你应该提出要求!
答案 1 :(得分:0)
您使用的是AuthSub with the .NET Client Library吗?如果是这样,试试这个
if (Request.QueryString["token"] != null)
{
String token = Request.QueryString["token"];
Session["token"] = AuthSubUtil.exchangeForSessionToken(token, null).ToString();
Response.Redirect(Request.Url.AbsolutePath, true);
}
P.S:上面的链接有完整的代码列表。