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));
} }); }