Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this page http://www.comehike.com/test_fb_connect.php

It is a test page I made that has a Facebook login button. For some reason it just started (or I just noticed) to redirect to Facebook with an error page that says nothing but "An error occurred. Please try again later."

Does anyone know how to fix this or what is causing this?

share|improve this question

1 Answer

Ah ok, fixed it by commenting out some code. The below code broke things:

$feed_url = "http://www.facebook.com/dialog/feed?app_id=".$app_id."&redirect_uri=" . urlencode($canvas_page)
                . "&message=" . $message;

         if (empty($_REQUEST["post_id"])) {
            echo("<script> top.location.href='" . $feed_url . "'</script>");
         } else {
            echo ("Feed Post Id: " . $_REQUEST["post_id"]);
         }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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