我在这个 Google Reader 测试代码中错过了什么?

发布于 2024-11-27 02:07:53 字数 826 浏览 3 评论 0原文

public void getToken() {

    BasicClientCookie cookie = new BasicClientCookie("SID", sid);
    cookie.setPath("/");
    cookie.setDomain(".google.com");

    CookieStore store = new BasicCookieStore();        
    store.addCookie(cookie);

    String url = "http://www.google.com/reader/api/0/token";

    HttpClient httpclient = new DefaultHttpClient();
    HttpGet req = new HttpGet(url);

    ((DefaultHttpClient)httpclient).setCookieStore(store);

    try {
        token = httpclient.execute(req, Misc.StringRespHandler);
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

我正在测试连接到 Google 阅读器。

获取SID成功。 所以我制作了一个SID cookie并尝试获取令牌,但失败了(403禁止)。

是不是方法不对呢?

我使用 Apache HttpClient 库。

public void getToken() {

    BasicClientCookie cookie = new BasicClientCookie("SID", sid);
    cookie.setPath("/");
    cookie.setDomain(".google.com");

    CookieStore store = new BasicCookieStore();        
    store.addCookie(cookie);

    String url = "http://www.google.com/reader/api/0/token";

    HttpClient httpclient = new DefaultHttpClient();
    HttpGet req = new HttpGet(url);

    ((DefaultHttpClient)httpclient).setCookieStore(store);

    try {
        token = httpclient.execute(req, Misc.StringRespHandler);
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

I'm testing to connect to Google Reader.

Getting SID was successful.
So I made a SID cookie and tried to get a token, but it failed (403 forbidden).

Is it a wrong way?

I used Apache HttpClient library.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囚你心 2024-12-04 02:07:53

不再支持使用 SID cookie 进行 Google Reader API 身份验证。支持的认证方式有OAuth和ClientLogin;请参阅 http://code.google.com/p/google-reader- api/wiki/Authentication 了解更多详细信息。

Using a SID cookie for Google Reader API authentication is no longer supported. Supported authentication methods are OAuth and ClientLogin; see http://code.google.com/p/google-reader-api/wiki/Authentication for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文