I am trying to access facebook autocomplete service via a cross-domain scripting.
replace id with your personal facebook user id, in the previous url.
Please note that Facebook is returning a malformed JSON answer with an infinite loop for(;;); inserted before a proper JSON answer. Here is a snapshot of the provided answer as seen in Firebug.
for (;;);{"error":0,"errorSummary":"","errorDescription":"","errorIsWarning":false,"silentError":0,"payload":{"entries":[{"uid": 0,"type":"user","text":"","path":"","tokens":[],"photo":"","subtext":"","rankType":"friend","index":-3.4171689126492},
Since this is a cross-domain json fetching, I am considering to use the JSONP technique, and my goal is to get the JSON answer and strip the for(;;); at the beginning and encapsulate the remaining JSON object into an appropriate callback.
My intuition is to pre-process the answer before I effectively call the callback, then i can transform the string malformed string provided by Facebook into a proper callback and by-pass Facebook for(;;);
I tried using jquery and $.ajax with dataType: "jsonp", but then I found out that in this case the dataFilter callback is simply ignored as discussed elsewhere.
I tried using jsonp-jquery plugin which is supposed to solve the above problem with dataFilter, but then again the dataFilter is ignored.
$.jsonp({ url: "http://www.facebook.com/ajax/typeahead/search.php?__a=0&value=an&viewer=1095011054&callback=?", cache: false, pageCache: false, dataFilter: function(json) { alert("datafilter"); return json; }, error: function (xOptions, textStatus) { alert("error"+textStatus); // the xOptions object or xOptions.context if provided }
Any alternative suggestion?