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'm trying to create a read button for my application. I have implemented the code as per the tutorial, but when i click publish button it says Error Occurred

    <script type="text/javascript">
  function postArticle()
  {
      FB.api(
        '/me/svolzesocial:news.reads?article=<?php the_permalink() ?>',
        'post',
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Successful! Action ID: ' + response.id);
           }
        });
  }
  </script>

I also tried debugging, but its showing no error there. I have created publish button on this page Svolze post Please help me out to sort this problem!

share|improve this question

2 Answers

up vote 2 down vote accepted

You're posting to the wrong URL.

If you're using the build in read action you should post to

/me/news.reads

If you're using a custom action you should post to

/me/yournamespace:youractionname

At the moment, you're convoluting the two.

share|improve this answer

Nikhil,

Please also console.log(response) when there is an error to help debug. My guess is that you don't have the correct permissions - you will need publish_actions to publish on the user's behalf. Add a login button with the correct scope and then try to publish.

Some resources:

Perms page Graph API Explorer

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.