作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个应用程序,我试图通过 facebook 邀请 friend js 方法邀请 friend ,但一切正常,但没有向该 friend 发送通知。
我的申请链接:http://www.huzoorbux.com/fl/app/android/www/homepage_nopost.html
我的代码:
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.api(
"/me/invitable_friends",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
if(top.location != self.location) {
top.location = self.location
}
FB.init({
appId:'228877127299395',
cookie:true,
status:true,
xfbml:true
});
function FacebookInviteFriends()
{
FB.ui({
method: 'apprequests',
message: 'Join My Job Buddy'
});
}
</script>
<a href='#' onclick="FacebookInviteFriends();"><div class="connectbutton5" id="ol">Invite Friends</div></a>
最佳答案
应用程序请求仅适用于游戏,这可能就是原因。并且始终使用回调函数进行错误处理,也许你会遗漏一个错误:
FB.ui({method: 'apprequests',
message: 'YOUR_MESSAGE_HERE'
}, function(response){
console.log(response);
});
另外:
The invitable_friends API is only available for games that have a Facebook Canvas app implementation using version 2.0 of the Graph API.
来源:https://developers.facebook.com/docs/games/invitable-friends/v2.1
如果您想邀请某人访问网站,请使用“发送和共享”对话框和按钮。您甚至不需要为他们授权用户。
关于javascript - 通知未发送给 Facebook 好友,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26586164/
我是一名优秀的程序员,十分优秀!