I'm working on developing a facebook tab application that works out of an iFrame. I have everything working perfectly on the authorization side except for handling cases where the user clicks "Don't Allow". But here I'm stuck. After spending several hours last night trying to work out the kinks I have no idea where to go from here.
The flow my application is taking is this. First the user is prompted to "Like" the page to access more of the application. At this point if they click like the next step is revealed but first a check is made to see if the app has authorization. If not some JS is place in the onload event that redirects the parent frame to the authorization link with the return_uri set to the link for the page's app tab. This works perfect if the user clicks Allow. If they click Don't Allow then it ends up going in a loop as things stand, repeatedly going back to the authorization page. What I would like it to do is display a little explanation page with a link back to the authorization page if the user wishes to reconsider their choice.
I found that the problem preventing me from handling this ok is that the application is in an iframe on the page the return_uri links back to (the app tab on the page). So the error and error_reason GET vars aren't available to my code, only the parent frame which is facebook and not under my control.
What can I do to get this functionality added to my application? Thanks!