I am trying to hit a drupal endpoint from Javascript inside my Facebook app with the following code:
dojo.xhrPost({
url: "?q=new_inflatable_icon",
content: {
name: saveData.name,
iconImage: saveData.iconImage,
thumbnail: saveData.thumbnail,
shapeXML: saveData.shapeXML
},
handleAs: "json",
load: function(data,xhr){
console.log("SAVE JS");
// Do some stuff on success
window.clearTimeout( timeout );
IconEditor.doneSaving();
},
error: function() {
console.log("ERROR");
window.clearTimeout( timeout );
err();
}
});
The endpoint it defined in drupal with the following code:
function inflatable_icons_menu() {
return array(
// Other menu items
'new_inflatable_icon' => array(
'page callback' => 'new_inflatable_icon_callback',
'access callback' => TRUE,
//'access arguments' => TRUE,//array('create inflatable_icon content'),
),
//more menu items
);
}
When I run on Chrome or Firefox it always seems to hit the endpoint in less then 3 seconds, but on Safari it often never hits the endpoint (after waiting for many minutes with no timeout set). If I do add a timeout to the dojo.xhrPost and then try and post again, after the timeout it will hit the Drupal endpoint (again within about 3 seconds). I had originally posted this issue to the Drupal stackexchange but I received bi response and I am now thinking it is likely not a Drupal issue.
Anyone have any ideas what could be going on here?
EDIT: I have added a snapshot of the network activity reported by Safari, it seems that the first POST is sent but its status remains (pending) forever and never return a status code. The second POST succeeds and returns 200 OK.
The following image shows these two attempted POSTS:

EDIT2: I finally got to test this issue on Mountain Lion (Safari 6.01) and I found that it is able to POST on the first try every time. So it seems that this only happens on the Snow Leopard version of Safari (using the latest version 5.1.7). I have read that apple is unlikely to update Safari for Snow Leopard so does this mean that I should instruct users to not use the app with Safari on Snow Leopard? Or is there maybe something I can do to workaround this on Safari for Snow Leopard?