I am trying to send application invitations from an Iframe application. I open the dialog as follows.
function sendRequestToOneRecipient(user_id) { FB.ui({method: 'apprequests', message: 'message', to: user_id, display: 'popup' }, requestCallback(user_id)); }
When the dialog box opens, I get a ton of error messages "Unsafe JavaScript attempt to access a frame with a URL from a frame with a URL." The send and cancel buttons just make the dialog empty, but they don’t close, and it doesn’t work.
I don’t know if this is connected or not, but when I load the JS SDK in Chrome, I get "I can not read the" cb "property from undefined", and Firefox says "b is undefined". I no longer have links to the old FeatureLoader.js.
source share