Счетчик непрочитанных API Google Reader

Есть ли в Google Reader API, и если да, то как узнать количество непрочитанных сообщений для конкретного пользователя, зная его имя пользователя и пароль?

4 ответа

Решение

Этот URL даст вам количество непрочитанных постов за канал. Затем вы можете перебирать каналы и суммировать их.

http://www.google.com/reader/api/0/unread-count?all=true

Вот минималистский пример в Python... парсинг xml/json и суммирование количества оставлено в качестве упражнения для читателя:

import urllib
import urllib2

username = 'username@gmail.com'
password = '******'

# Authenticate to obtain SID
auth_url = 'https://www.google.com/accounts/ClientLogin'
auth_req_data = urllib.urlencode({'Email': username,
                                  'Passwd': password,
                                  'service': 'reader'})
auth_req = urllib2.Request(auth_url, data=auth_req_data)
auth_resp = urllib2.urlopen(auth_req)
auth_resp_content = auth_resp.read()
auth_resp_dict = dict(x.split('=') for x in auth_resp_content.split('\n') if x)
auth_token = auth_resp_dict["Auth"]

# Create a cookie in the header using the SID 
header = {}
header['Authorization'] = 'GoogleLogin auth=%s' % auth_token

reader_base_url = 'http://www.google.com/reader/api/0/unread-count?%s'
reader_req_data = urllib.urlencode({'all': 'true',
                                    'output': 'xml'})
reader_url = reader_base_url % (reader_req_data)
reader_req = urllib2.Request(reader_url, None, header)
reader_resp = urllib2.urlopen(reader_req)
reader_resp_content = reader_resp.read()

print reader_resp_content

И несколько дополнительных ссылок по теме:

Это там. Тем не менее, в бета-версии.

Вот обновление к этому ответу

import urllib
import urllib2

username = 'username@gmail.com'
password = '******'

# Authenticate to obtain Auth
auth_url = 'https://www.google.com/accounts/ClientLogin'
#auth_req_data = urllib.urlencode({'Email': username,
#                                  'Passwd': password})
auth_req_data = urllib.urlencode({'Email': username,
                                  'Passwd': password,
                                  'service': 'reader'})
auth_req = urllib2.Request(auth_url, data=auth_req_data)
auth_resp = urllib2.urlopen(auth_req)
auth_resp_content = auth_resp.read()
auth_resp_dict = dict(x.split('=') for x in auth_resp_content.split('\n') if x)
# SID = auth_resp_dict["SID"]
AUTH = auth_resp_dict["Auth"]

# Create a cookie in the header using the Auth
header = {}
#header['Cookie'] = 'Name=SID;SID=%s;Domain=.google.com;Path=/;Expires=160000000000' % SID
header['Authorization'] = 'GoogleLogin auth=%s' % AUTH

reader_base_url = 'http://www.google.com/reader/api/0/unread-count?%s'
reader_req_data = urllib.urlencode({'all': 'true',
                                    'output': 'xml'})
reader_url = reader_base_url % (reader_req_data)
reader_req = urllib2.Request(reader_url, None, header)
reader_resp = urllib2.urlopen(reader_req)
reader_resp_content = reader_resp.read()

print reader_resp_content

Google Reader удалил аутентификацию SID примерно в июне 2010 года (я думаю), используя новый Auth от ClientLogin - новый способ, и он немного проще (заголовок короче). Вам придется добавить service в данных для запроса AuthЯ заметил нет Auth возвращается, если вы не отправили service=reader,

Вы можете прочитать больше об изменении метода аутентификации в этой теме.

В API, опубликованном в [1], поле "токен" должно быть "T"

[1] http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI

Другие вопросы по тегам