5

私はグーグルリーダーのクライアントに取り組んできました。エントリを編集して「スター付き」や「読み取り」などのタグを追加できないことを除いて、すべて正常に機能します。code.google.com/p/pyrfeed/wiki/GoogleReaderAPIおよびwww.niallkennedy.com/blog/2005/12/google-reader-api.htmlの手順は古くなっているようです。さらに奇妙なことに、私はgoogle自体が使用するPOSTデータを検査し、それを正確に複製しようとしていますが、それでも機能させることができません。私が最も近いのは、たとえば、 http://www.google.com/reader/api/0/edit-tag with POST data a = / user /-/ state / com.google / starred&async = true&s = [フィード]&i = [アイテム]&T=[トークン]

これはまさにグーグル自体がしていることのようですが、私はいつも「無効なストリーム名」を返します。何かアドバイス?

4

1 に答える 1

3

決定的な答えはありませんが、API api/0/edit-tag にも問題があり、なんとか機能させることができました。

私はすでに API の他の部分 (api/0/stream/items/ids、api/0/unread-count) を問題なく使用していましたが、これは簡単には機能しませんでした。

しばらくして、Web フロントエンド (Chrome 開発ツールを使用) によって Google リーダーに送信されたリクエストを検査することからやり直し、ハードコーディングされた例を作成しました (このコードを使用できます。ID とストリームを変更するだけです。 - 必要なプレフィックスがすべて含まれていることに注意してください: ストリームの場合は feed/、id の場合は tag:google.com,2005:reader/item/)。

        String authToken = getGoogleAuthKey();
        // I use Jsoup for the requests, but you can use anything you
        // like - for jsoup you usually just need to include a jar
        // into your java project
    Document doc = Jsoup.connect("http://www.google.com/reader/api/0/edit-tag")
        .header("Authorization", _AUTHPARAMS + authToken)
        .data(
                    // you don't need the userid, the '-' will suffice
                "a", "user/-/state/com.google/read",
                "async", "true",
                "s", "feed/http://www.gizmodo.com/index.xml",
                "i", "tag:google.com,2005:reader/item/1a68fb395bcb6947",
                "T", "//wF1kyvFPIe6JiyITNnMWdA"
        )
        // I also send my API key, but I don't think this is mandatory
        .userAgent("[YOUR_APP_ID_GOES_HERE].apps.googleusercontent.com")
        .timeout(10000)
        // don't forget the post! (using get() will not work)
        .**post()**;

ストリームからの特定のアイテムを既読としてマークするための最終的なコードを次に示します (translateToItemAtomId メソッドは、api/0/stream/items/ids によって返された long integer id を、この API によって受け入れられる atom xml id に変換するために使用されます)。

        String authToken = getGoogleAuthKey();
    Document doc = Jsoup.connect("http://www.google.com/reader/api/0/edit-tag")
        .header("Authorization", _AUTHPARAMS + authToken)
        .data(
                "a", "user/-/state/com.google/read",
                "async", "true",
                "s", stream,
                "i", translateToItemAtomId(itemId),
                "T", getGoogleToken(authToken)
        )
        .userAgent("[YOUR_APP_ID_GOES_HERE].apps.googleusercontent.com")
        .timeout(10000).post();

必要な追加コード ( http://www.chrisdadswell.co.uk/android-coding-example-authenticating-clientlogin-google-reader-api/に基づく):

    private static final String _AUTHPARAMS = "GoogleLogin auth=";
private static final String _GOOGLE_LOGIN_URL = "https://www.google.com/accounts/ClientLogin";
private static final String _READER_BASE_URL = "http://www.google.com/reader/";
private static final String _API_URL = _READER_BASE_URL + "api/0/";
private static final String _TOKEN_URL = _API_URL + "token";
private static final String _USER_INFO_URL = _API_URL + "user-info";
private static final String _USER_LABEL = "user/-/label/";
private static final String _TAG_LIST_URL = _API_URL + "tag/list";
private static final String _EDIT_TAG_URL = _API_URL + "tag/edit";
private static final String _RENAME_TAG_URL = _API_URL + "rename-tag";
private static final String _DISABLE_TAG_URL = _API_URL + "disable-tag";
private static final String _SUBSCRIPTION_URL = _API_URL
        + "subscription/edit";
private static final String _SUBSCRIPTION_LIST_URL = _API_URL
        + "subscription/list";

public static String getGoogleAuthKey() throws IOException {
    String _USERNAME = "USER_EMAIL@gmail.com";
    String _PASSWORD = "USER_PASSWORD";

    Document doc = Jsoup
            .connect(_GOOGLE_LOGIN_URL)
            .data("accountType", "GOOGLE", "Email", _USERNAME, "Passwd",
                    _PASSWORD, "service", "reader", "source",
                    "[YOUR_APP_ID_GOES_HERE].apps.googleusercontent.com")
            .userAgent("[YOUR_APP_ID_GOES_HERE].apps.googleusercontent.com")
            .timeout(4000).post();

    // RETRIEVES THE RESPONSE TEXT inc SID and AUTH. We only want the AUTH
    // key.
    String _AUTHKEY = doc
            .body()
            .text()
            .substring(doc.body().text().indexOf("Auth="),
                    doc.body().text().length());
    _AUTHKEY = _AUTHKEY.replace("Auth=", "");
    return _AUTHKEY;
}

// generates a token for edition, needed for edit-tag
public static String getGoogleToken(String authToken) throws IOException {
    Document doc = Jsoup.connect(_TOKEN_URL)
            .header("Authorization", _AUTHPARAMS + getGoogleAuthKey())
            .userAgent("[YOUR_APP_ID_GOES_HERE].apps.googleusercontent.com")
            .timeout(10000).get();

    // RETRIEVES THE RESPONSE TOKEN
    String _TOKEN = doc.body().text();
    return _TOKEN;
}

お役に立てれば!

于 2011-06-09T15:10:22.070 に答える