i've been figuring it out for ages, there's no problem debugging tool or in the terminal console, but it keeps popping "error occurred" in the following codes:

<script type="text/javascript">
    function postCook()
    {
        $pageURL = window.location;

        FB.api('/me/bgfapp:watch?movie=' + $pageURL,'post',
                    function(response) {
            if (!response || response.error) {
                    alert('Error Occurred');
            } else {
                alert('Post was successful! Action ID: ' + response.id);
                }
        });
    }
 </script>

i tried to echo $pageURL and it returns the current URL successfully, so i can't figure out what's wrong with the above code


updated: 30-Jan-2012

the error says: Error Occurred[object Object][object Object]

link|improve this question
anyone can help? – Jaimie Au Jan 29 at 15:55
print out response. what does this return: alert('Error Occurred' + response + " " + response.error) – JiminyCricket Jan 29 at 17:23
hi, the error says: Error Occurred[object Object][object Object] – Jaimie Au Jan 30 at 10:32
1  
hi, i slightly modify the alert to: alert('Error Occurred' + response.responseText + " " + response.error.responseText); and the message becomes: Error Occurred undefined undefined – Jaimie Au Jan 30 at 16:37
what does response.error say? – JiminyCricket Feb 1 at 15:18
feedback

1 Answer

Based on your new error message it looks like you need to see what response.error says. Your logic says that either you got no response at all or you got a response.error. You should first figure out what case you are in and act accordingly.

response.responseText and response.error.responseText are undefined because they aren't returned to you.

    $pageURL = '/me/bgfapp:watch?movie=' + window.location;

    FB.api($pageURL,'post',
                function(response) {
                     if (!response) { 
                          alert('Error Occurred I got no response with ' + $pageURL);
                     }
                     else if (response.error) {
                          alert('Error Occurred '+ response.error);
                     } else {
                         alert('Post was successful! Action ID: ' + response.id);
                     }
             });

My suggestion is try simple and work your way up. Debug all variables that you are checking. If you aren't getting a response it could be that your API endpoint call doesn't exist. If you are getting an error then your call is wrong or maybe not authenticated.

link|improve this answer
thank you so much, it works perfectly well :) – Jaimie Au Feb 1 at 15:44
pleas accept the answer if it was what you needed. thanks. – JiminyCricket Feb 3 at 13:22
feedback

Your Answer

 
or
required, but never shown

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