我正在开发 facebook 移动网络应用程序,我在所有桌面浏览器上测试了邀请朋友,它工作正常,它在移动版 Firefox 上也能正常工作。但它不适用于android原生浏览器,邀请朋友弹出窗口出现并且只显示加载过程。
这是我的代码:
function sendRequestInvite() {
FB.ui({
method: 'apprequests',
suggestions: nonAppFriendIDs,
message: 'Learn how to make your mobile web app social',
}, function(response) {
console.log('sendRequestInvite UI response: ', response);
});
}
你能帮我解决这个问题吗?