This works well in Chrome/Safari/Firefox etc. But I can't get it working in IE7. Any ideas?
I have a cross-domain channel set up, and that seems to be working elsewhere.
I bring up a permissions dialog like this:
o.method = 'permissions.request';
o.perms = 'email';
o.display = 'dialog';
FB.ui(o, function(res) {
// do something
});
In IE this appears as a popup, but after granting the permission, the popup does not close - and redirects to my cross-domain channel url.
Any ideas how to automatically close the dialog?
A second problem is if I manually close the dialog, the callback is invoked, but without the granted permission. Could be related to the first point, but I'm not sure.
Thanks!