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.

So I've been trying to use the awful excuse of an API to retrieve a public page's feed and post to it. The code has pretty much been lifted out of the example documentation but I keep getting the (#368) The action attempted has been deemed abusive or is otherwise disallowed error.

<?php

        $user = $facebook->getUser();
        if ($user) {
            try {
                // Proceed knowing you have a logged in user who's authenticated.
                $user_profile = $facebook->api('/me');
            } catch (FacebookApiException $e) {
                echo $e;
                $user = null;
            }
        }

        $array = array(
            'redirect_uri' => 'http://sonogenics.co.uk',
            'scope' => 'publish_stream,manage_pages'
        );

        if ($user) {
            $logoutUrl = $facebook->getLogoutUrl($array);
            echo "Displaying logout url";
        } else {
            $loginUrl = $facebook->getLoginUrl($array);
            echo "Displaying login url";
        }

        ?>
        <?php if ($user) {
            try {
                $ret_obj = $facebook->api('/256338757770153/feed', 'POST', array( 'access_token' => $facebook->getAccessToken(), 'message' => 'Glad we finally got this working' ));
                echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';

                // Give the user a logout link 
                echo '<br /><a href="' . $facebook->getLogoutUrl($array) . '">logout</a>';
              } catch(FacebookApiException $e) {
                // If the user is logged out, you can have a 
                // user ID even though the access token is invalid.
                // In this case, we'll get an exception, so we'll
                // just ask the user to login again here.
                $login_url = $facebook->getLoginUrl( $array ); 
                echo 'Please <a href="' . $login_url . '">login.</a>';
                echo 'Error caught<br />';
                echo $e->getType();
                echo 'Error caught<br />';echo 'Error caught<br />';
                echo $e->getMessage();
              }
          } else {

              // No use r, so print a link for the user to login
              // To post to a user's wall, we need publish_stream permission
              // We'll use the current URL as the redirect_uri, so we don't
              // need to specify it here.
            echo "No User";
              $login_url = $facebook->getLoginUrl( array('scope' => 'publish_stream,manage_pages'));
              echo 'Please <a href="' . $login_url . '">login.</a>';
            } 
          ?>

As soon as I add the link value to the post params, I get the OAuthException: (#1) An error occured while creating the share error. I'm logged in as an admin of the page and have liked it (they don't make it obvious that you have to do that either...).

I managed to make one post yesterday although I stupidly changed the code slightly (can't remember how, I know, IDIOT!) and now I can't make any posts at all. Can someone offer some insight on how to make these calls?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.