I am trying to create a facebook application, all is working fine except the ajax part that I am using to populate a second box from the item selected in first select box.

I am using jquery (v1.3.2) for accomplishing this. This ajax is working absolutely fine on the host where I have taken space for it, but it is not working in facebook.

Here are my questions regarding to this problem,

  • does canvas page url needs to be same as that of my application name. ( in my case it is different)

I am getting this error on the onchange event of parent select box inside facebook.

Access to restricted URI denied" code: "1012

  • what might be wrong...? Please help me solve this problem.

Thanks

link|improve this question

1  
What kind of Facebook application is it? FBML or IFrame? – zombat Jul 27 '09 at 7:21
What's CakePHP got to do with this? – mgroves Jul 27 '09 at 20:23
well, it is an iframe application, and for the second comment the application has been built in cakephp. – Gaurav Sharma Jul 28 '09 at 7:10
feedback

3 Answers

up vote 6 down vote accepted

You are not allowed to request data from other sites than the domain the script is running on. For example, if you are running the script www.example.com/script.js, then you can only ajax files under the www.exaple.com domain, not www.facebook.com.

There are a few ways to do it:

  • JSONp is a way, but it requires that facebook replies with jsonp data. Not sure if it does. More info on JSONp here.
  • CSSHttpRequest (or AJACSS) is another way. Seriously doubt facbook uses this method.
link|improve this answer
feedback

Using FBML you can use FBJS to send JSON data type to your own script:

Here is the documentation: http://wiki.developers.facebook.com/index.php/FBJS/Examples/Ajax

link|improve this answer
feedback

There is a limitation when using ajax that the xmlhttp request may not be cross-domain. See https://developer.mozilla.org/En/Same_origin_policy_for_JavaScript

A common workaround for this is to make the ajax request to a backend script that will actually make the cross-domain request i.e. cURL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.