Problem:
I am trying to test the subscription to the facebook comment event as described by facebook: http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/ .
FB.Event.subscribe('comment.create',
function(response) {
alert('You commented on: ' + response);
}
);
While I was integration testing this, after 23 comments, I found my account was suspended. I can no longer comment. I attempted to resolve this by logging into my facebook account and reactivating by answering questions (DOB, Captcha) and resetting my password. Unfortunately, this did not allow me to comment again. I thought they me be blocking me by IP.
Details:
- The comments are all happening on the same page.
- The comment plugin is implemented as follows:
<script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = '//connect.facebook.net/en_US/all.js#xfbml=1&appId=111111111111111'; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div class="fb-comments" data-href="THE_URL"" data-num-posts="6" data-colorscheme="light" data-mobile="auto-detect" data-width="744"></div>
Question
What can I do to test this plugin without getting shutdown by Facebook?