Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在没有对话框的情况下将任何文本发布到用户时间轴?我知道如何使用提要对话框来做到这一点,但我只需要发布一些文本。
嗨,你可以做类似的事情
FB.api( FB.api('/me/feed', 'post', { body: body, message: 'My message is ...' }, function(response) { if (!response || response.error) { alert(response); } else { alert(response));
} }); }