Urgent Iframe help

uditbhansali

Regular Member
Joined
Aug 16, 2010
Messages
488
Reaction score
292
I have created a flash fan page and I have the index.html file.
But when I try to connect the iframe app to that link it shows me

Forbidden
You don't have permission to access / on this server.


I don't know what's the problem.

Can anyone help me. pls pls pls
 
Facebook actually loads your page by doing a HTTP POST into an empty iframe, and your webserver doesn't allow for POST requests to a .html file.

Change your index.html to index.php and you should be good to go.
 
Facebook actually loads your page by doing a HTTP POST into an empty iframe, and your webserver doesn't allow for POST requests to a .html file.

Change your index.html to index.php and you should be good to go.

+1

the Posted data by Facebook is signed_request, containing some details about the logged-in user, if the user is admin, or liked the page, and an access token to perform some API calls to FB servers.

for more information about signed request, and how to use it :
Code:
http://developers.facebook.com/docs/authentication/signed_request/
 
thanks a lot for the info buddy i was looking for this same ans for few days now...
 
Back
Top