如果您的应用程序是网站,有没有办法发送apprequests? 我在facebook http://developers.facebook.com/bugs/182553325173000上报告了一个错误,但我不知道这是否可行
答案 0 :(得分:2)
是的,你可以通过添加JS API来实现这一点,
在<body>
添加之前:
<script type="text/javascript">
function inviteFriends(){
var receiverUserIds = FB.ui({
method : 'apprequests',
message: 'YOUR CUSTOM MESSAGE',
},
function(receiverUserIds) {
console.log("IDS : " + receiverUserIds.request_ids);
}
);
}
</script>
在<body>
包含API(异步方法)后:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true //enables OAuth 2.0
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
并称之为:
<a href="#" onclick="inviteFriends(); return false;"></a>
或
<a href="javascript:inviteFriends(); return false;"></a>
答案 1 :(得分:0)
您可以使用Javascript SDK
执行此操作它在文档中: https://developers.facebook.com/docs/reference/dialogs/requests/
答案 2 :(得分:0)
正如其他答案所示,这是可能的,但是当用户接受请求时,用户将被带到您的画布应用