Google Reader將吹熄燈號

哇, 真是要命…. 今天打開 Google Reader 時…

對我來說幾乎和 Gmail 使用率幾乎差不多的 Google Reader 要停止服務了. 這個非常好用的 Google Reader, 無論是用在各種媒體, blog, video, 論壇等, 都十分方便, 而且也是目前很重要的一個媒體資訊來源, 居然要停掉了, 真的很可惜!

上面的 Learn more 連結是到這裡: http://support.google.com/reader/answer/3028851 說明如何下載自己的 Google Reader 資料, 利用 takeout service 可以將在 Google Reader 的資料取回, 裡面最重要的就是 subscriptions.xml 也就是訂閱的資料來源, 方便之後再匯入到其他的閱讀器中.

不知道大家有沒有什麼好的閱讀器可以分享介紹一下呢?

Google 停掉這個服務的原因是什麼? 看起來比較不像是成本問題, 而是使用率吧, 會使用閱讀器的用戶可能都是重度使用者, 一般用戶應該比較少在用, 而透過其他管道來取得資訊吧.

Farewell, Google Reader!

相關新聞:
http://chinese.engadget.com/2013/03/13/google-reader-shut-down-spring-cleaning/
http://mag.udn.com/mag/digital/storypage.jsp?f_MAIN_ID=319&f_SUB_ID=2941&f_ART_ID=445600
http://news.cnyes.com/Content/20130314/KH6OXRHLGUJ33.shtml
這篇寫得較深入: http://tech.qq.com/a/20130314/000085.htm

分類
blog服務

從Google Reader API中獲得RSS Cache的資料

相信很多人有用過 Google Reader, 其中有趣的地方, 是今天要介紹的 Google Reader API 中, 把 RSS Cache 的資料讀出來的部分, 先來參考一下文件:

http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI

其實很容易使用的, 例如:

http://www.google.com/reader/atom/feed/https://diary.tw/tim/rss?n=20
(需要 Google Account 登入)

就可以取得 https://diary.tw/tim/rss 下的資料, 什麼樣的應用情境呢? 例如某網誌的 RSS 只有提供 20 篇最新的資料, 但需要取得舊的資料(當然前提是有其他人在 Google Reader 中訂閱過才行, 也就是 Google Reader 有 cache 過它的 RSS 資料的狀況下), 就可以使用這個 API 了.

又或是原始的網站找不到了, 但在 RSS 中有資料, 就可以利用 RSS Cache 的資料來將原本的網站資料找出來.

使用方式就是上面的說明, 而要換頁的方式, 是使用 more token 的方式, 在 response 的內容中, 會有個 gr:continuation, 這個 tag 就是再下一頁的內容使用, 使用方式是用 c 參數, 如下:

http://www.google.com/reader/atom/feed/https://diary.tw/tim/rss?c=CLK9-LPAya0C

該 token 會依實際狀況改變, 請自行調整. 這樣就可以一直翻頁下去, 直到沒有 gr:continuation tag 時就是沒有更多的最後回應了.

[2012/9/14 18:24]
這裡有 Google Reader API 的資料可供參考:
http://blog.martindoms.com/2009/10/16/using-the-google-reader-api-part-2/