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.

the code of tutorial is:

  <script type="text/javascript">
  function postCook()
  {
      FB.api(
        '/me/[YOUR_APP_NAMESPACE]:cook?recipe=http://fbwerks.com:8000/zhen/cookie.html',
        'post',
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Cook was successful! Action ID: ' + response.id);
           }
        });
  }
  </script>

I need to create a button in the same way but to remove the option of the timeline. Thank you.

share|improve this question

1 Answer

Keep in mind that this can only work if you have the Action ID of the item you want to delete. So if you set up your button as shown below, you could use this:

//Button code
<button onclick="deleteCook(ActionID)">Delete Cook </button>

 <script type="text/javascript">   
function deleteCook(ActionID) {



            FB.api(ActionID, 'delete', function(response) {
              if (!response || response.error) {
                alert('Error occured');

              } else {
                 alert('Cook action was deleted');
                          }
            });

                                               });
           }
</script>
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.