如何使用feedparser从Facebook检索通知?

时间:2011-02-18 23:37:14

标签: facebook rss notifications

我必须在外部设备上显示通知的数量(使用RSS订阅源),因此希望使用feedparser检索通知。

1 个答案:

答案 0 :(得分:1)

我不确定“外部设备”是什么意思,但我用来检索通知的代码是

def getFB(posts, ID, key):
    f = feedparser.parse("http://www.facebook.com/feeds/notifications.php?id=" + ID + "&viewer=" + ID + "&key=" + key + "&format=rss20");
    print "Here are the latest facebook posts. ";
    fi = 0
    while fi<posts:
        print f.entries[fi].description;
        fi = fi + 1;