現在、PyFacebook を使用して、現在アプリを使用している友人のリストを取得しようとしています。以下の Python コードを使用すると、ログイン後に名前と uid を含むフレンドのリスト全体を取得できます。
# Desktop Application example
def desktop_app():
from facebook import Facebook
# Get api_key and secret_key from a file
facebook = Facebook('API_KEY','SECRET_KEY')
facebook.auth.createToken()
# Show login window
facebook.login()
# Login to the window, then press enter
print 'After logging in, press enter...'
raw_input()
facebook.auth.getSession()
info = facebook.users.getInfo([facebook.uid], ['name', 'birthday', 'affiliations','sex'])[0]
for attr in info:
print '%s: %s' % (attr, info[attr])
friends = facebook.friends.get()
friends = facebook.users.getInfo(friends[0:], ['name', 'birthday'])
for friend in friends:
if 'birthday' in friend:
print friend
if __name__=="__main__":
desktop_app()
これは素晴らしいことですが、指定された API_KEY と SECRET_KEY で現在アプリを使用している友人だけが必要です。PyFacebookでこれを行う方法を知っている人はいますか?