Joined: 03 Jan 2008 |
Posts: 4 |
|
|
 |
Posted: Fri Jan 11, 2008 8:23 pm |
|
 |
 |
 |
 |
Hi guys,
I'm not sure how familar you are with the Facebook API so I'll give a short intro:
They give you a URL like:
http://apps_facebook_com/myapp/
That then maps to a URL you define like:
http://apps_facebook_com/myapp/ => http://mydomain_com/myapp/
Now, the debugging is not straight forward... I can't debug locally because making any request like:
http://mydomain_com/myapp/?myquery=blah
Will redirect to Facebook for login purposes and so on.
Now here's the strange thing: remote debugging http://mydomain_com/myapp/?myquery=blah works fine in PhpED (i.e. I've set it up properly). It's not possible to debug Facebook applications this way because Facebook sets some $_REQUEST variables and so on...
Remote debugging http://apps_facebook_com/myapp/?myquery=blah DOESNT work. It doesn't trigger the debugger at all. I even tried setting the remote URL to
http://apps_facebook_com/myapp/.
Any ideas how to make this work?
Thanks
|