少なくとも 4,000 件のパブリック コメントが確認された Facebook の投稿があります。しかし、980個以上は入手できません。
毎回、900 をクリアすると、次のエラーが発生します。
Traceback (most recent call last):
File "fb_pcf_temp.py", line 41, in <module>
next = decoded['paging']['next']
KeyError: 'next'
私のコードは次のとおりです。
#!/usr/bin/env python
# encoding: utf-8
"""
postgrabber.py
Created by ian on 2012-09-24.
Copyright (c) 2012 __MyCompanyName__. All rights reserved.
"""
import sys
import os
import ogp
import config
import httplib
import simplejson as json
import requests
getData = ogp.facebookQueries()
post_id = "145061248901557_381440708596942"
def getmore(nexturl):
access_token = getData.authenticate()
theFeedUrl = nexturl + "&" + access_token
print theFeedUrl
req = requests.get(theFeedUrl)
f = req.text
decoded = json.loads(f)
return decoded
next = "https://graph.facebook.com/%s?fields=comments.limit(100).fields(likes,message,from,like_count)" % post_id
x = 0
while x < 40:
decoded = getmore(next)
try:
comments = decoded['comments']['data']
next = decoded['comments']['paging']['next']
except:
comments = decoded['data']
next = decoded['paging']['next']
for d in comments:
print '%s\t%s\t%s\t%s\t"%s"' % (d['created_time'],d['like_count'],d['from']['name'],d['from']['id'],d['message'])
x = x + 1
1000 をはるかに超えるパブリック コメントが寄せられていることは確かです。この投稿には合計 4780 のコメントがあり、そのうち 3800 が非公開とマークされている可能性は低いと思います。
他の誰かがこれに遭遇しましたか?私は明らかに間違ったことをしていますか?