我正在尝试在Facebook时间轴和页面时间轴中发布自定义操作。
以下是示例代码。
graph = facebook.GraphAPI(access_token)
attachment = {
'name': 'headline',
'link': link,
'actions' : { 'name' : 'Call here', 'link': str(apply_link) },
'description': job_description,
'picture': image_url
}
graph.put_wall_post(message, attachment= attachment)
发布到页面墙成功,发布到用户墙不成功(没有错误消息,但缺少自定义操作)。
这是因为某些特定原因吗?
有没有具体方法可以做到这一点?
我不知道为什么,但自定义动作出现在第二天。