我是大韩民国的开发商。
我目前正在制作基于Facebook和Twitter的网站。
我想使用可以向朋友发送消息的JavaScript API,
所以我咨询了iframe
Javascript 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);
}
})
答案 0 :(得分:3)
您想在Facebook上向朋友发送消息,或发布到Facebook墙上供所有人查看?我将假设在Facebook上向朋友发送消息。
<强>手册强>
如果您想使用JS SDK在Facebook上向朋友发送消息,请按照以下说明操作:https://developers.facebook.com/docs/reference/dialogs/send/
这不是自动的,仍然会显示一个供用户确认的对话框。
<强>自动强>
如果您想通过Graph API在后台进行,则不能。这是一个链接,更详细地解释了为什么你不能和你有其他选择:https://stackoverflow.com/a/4061298/540339