我有以下权限:
create_note, email, offline_access, photo_upload, publish_stream, read_stream, share_item, status_update, manage_notifications, read_friendlists, video_upload, user_relationships, user_status, user_photos
我可以在用户时间轴 (www.facebook.com/username) 上发帖,但我看不到如何在用户的墙上发帖 (www.facebook.com)
要在用户时间轴上发布,我使用如下代码:
如果我需要在帖子中附加图片
client.put_connections("me", "feed", attachments, attachments)
和
如果我不需要在帖子中附加图片
client.put_connections("me", "links", attachments, attachments)
两者都工作得很好,但他们都没有真正在墙上发布消息(www.facebook.com 作为登录用户)
所以,我只是想知道这是正常行为还是我只是错过了什么?
谢谢你。