我是大韩民国的开发人员.
我目前正在制作基于Facebook和Twitter的网站.
我想使用可以向朋友发送消息的JavaScript API,
所以我咨询了iframeJavascript API方法或使用Facebook页面看起来像发送.
我想知道,
我用它作为Javascript API向朋友发送消息,提供了一个?
我的英文不好.所以我使用谷歌翻译.
敬请谅解.
(Edited, fixed some grammar and rewording)
FB.api (path, "post", {
message: msg,
caption: "caption caption",
link: "http://www.naver.com",
description: "Description Description",
picture: "http://sstatic.naver.net/search/img3/h1_naver.gif",
tag: "Tag",
name: "name names",
access_token: accessToken
}, Function (response) {
if (! response | | response.error){
alert ("error");
}
else{
alert (response.id);
}
})
Run Code Online (Sandbox Code Playgroud)