我们正在编写一个 spotify 应用程序,它使用 showAuthenticationDialog-Dialog 来邀请用户 facebook 朋友。
邀请有效,但弹出窗口不会在 Windows 上关闭(在 Mac 上会关闭!)。
代码如下所示:
var redir = "https://server/services/callback/facebook/apprequest/?source=spotify&user_id=" + uID;
var data = "user_id=" + session.otheruser.id;
var url = "http://www.facebook.com/dialog/apprequests?app_id=" + FB_APP_ID + "&message=" + encodeURIComponent( msg ) + "&redirect_uri=" + encodeURIComponent( redir ) + "&display=popup&data=" + encodeURIComponent( data );
auth.showAuthenticationDialog(url, 'http://moosify.com', {
onSuccess : function(response) {
console.log("Success! Here's the response URL: " + response);
},
onFailure : function(error) {
console.log("Authentication failed with error: " + error);
},
onComplete : function() { }
});
服务器实际上是我们的服务器 URL。(在 manifest.json 中)