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 using the FB.api to post to a friend's wall... here is the code:

    function postToWallFB(friendId, postMsg, name, link, description, picture){
    var opts = {
        message : postMsg,
        name : name,
        link : link,
        description : description,
        picture : picture
    };

    FB.api('/'+friendId+'/feed', 'post', opts, function(response)
    {


            if (!response || response.error)
            {
                alert('Error');                 
            }
            else
            {
                alert('Ok');

            }

    }); 
}

the function is working great... the image and everything is showing correctly in my friend's wall... but when i enter with the account that received the post, it doesnt show any notification in the top left buttons of my interface.

does anyone have any idea of what is going on?

share|improve this question
Enter with which account, are you using Test Users to check? – phwd Aug 16 '12 at 21:00

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.