0

在 Javascript 中,我可以通过以下方式检索大量状态:

function buildObject() {
    FB.api('me?fields=statuses.limit(100).fields(message,from)', function(response) {

但是,当我尝试在 Python 中做同样的事情时,它给了我一个关于有效访问令牌的错误。但是当我删除修饰符时它会起作用,所以我不确定问题是什么。

def findStatuses():
    print "digging through the Facebook API"
    graph = facebook.GraphAPI(accessToken)
    statuses = graph.get_connections("me", "statuses.limit(100)")
    for entry in statuses['data']:
        post = entry["message"]
        print post.encode("utf-8")

有没有正确的方法来使用我没有做的修饰符?

4

1 回答 1

1

漠视。它应该是

    statuses = graph.get_connections("me", "statuses", limit=100)
于 2013-04-27T18:36:39.487 回答