我可以使用 Facebook Python SDK 发布打开图形操作吗?由于 python facebook SDK 现在已经很老了,我怎么能用它来发布一个开放的图形动作——我在任何地方都找不到一个例子。
问问题
1082 次
3 回答
1
您可以使用GraphAPI.request(self, path, args=None, post_args=None)
Python for Facebook 3rd 方库 (http://www.pythonforfacebook.com/) 中的函数。只需按照 Facebook 开发人员站点上的文档构建path
,args
并post_args
需要进行 API 调用。
于 2012-05-23T10:08:53.150 回答
1
使用 pip 中的 facebook-sdk 包,您可以使用 put_object 调用发布操作
facebook.GraphAPI(token).put_object("me", "my_app:my_action", "my_object_type"="http://my_objects_url")
于 2012-10-30T14:21:23.387 回答
0
你可以使用https://github.com/zetahernandez/facebook-python-sdk 它支持做简单的请求,比如
facebook = Facebook(
app_id='{app_id}',
app_secret='{app_secret}',
default_graph_version='v2.5',
)
facebook.set_default_access_token(access_token='{access_token}')
try:
response = facebook.get(endpoint='/me?fields=id,name')
except FacebookResponseException as e:
print e.message
else:
print 'User name: %(name)s' % {'name': response.json_body.get('id')}
或批量请求
facebook = Facebook(
app_id='{app_id}',
app_secret='{app_secret}',
)
facebook.set_default_access_token(access_token='{access_token}')
batch = {
'photo-one': facebook.request(
endpoint='/me/photos',
params={
'message': 'Foo photo.',
'source': facebook.file_to_upload('path/to/foo.jpg'),
},
),
'photo-two': facebook.request(
endpoint='/me/photos',
params={
'message': 'Bar photo.',
'source': facebook.file_to_upload('path/to/bar.jpg'),
},
),
'photo-three': facebook.request(
endpoint='/me/photos',
params={
'message': 'Other photo.',
'source': facebook.file_to_upload('path/to/other.jpg'),
},
)
}
try:
responses = facebook.send_batch_request(requests=batch)
except FacebookResponseException as e:
print e.message
于 2016-11-17T01:57:45.317 回答