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 post a messsage to a wall using FB.api

My perms are: 'email, read_stream, publish_stream' and my code is:

FB.getLoginStatus(function(response){
    if(response.session) {
        var accessToken = response.session.access_token;
        var tokenUrl = "https://graph.facebook.com/me/feed?access_token=" + accessToken + "&callback=?";

        var shareUserId = document.getElementById("shareHidden").value;
        var shareTxtAreaMsg = document.getElementById("shareTxtArea").value;
        console.log("friends user Id: " + shareUserId + " & " + "message: " + shareTxtAreaMsg);

        var data = {
            message: "shareTxtAreaMsg",
            display: 'iframe',
            caption: "Caption",
            name: "Name",  
            picture: 'http://someDomain.com/Dev/img/share-force-wall-img.jpg',    
            link: "http://www.facebook.com/pages/someapp/XXXXXXXXXXX?sk=app_XXXXXXXXXXXXXX",  // Go here if user click the picture
            description: "Description field",
            actions: [{ name: 'action_links text!', link: 'some link' }],           
        }

        console.log(accessToken);

        FB.api(tokenUrl, 'post', data, function(response){
            if (response)
            {
                //console.log(response);
                if (response.error)
                {
                    console.log(response.error.message);
                }
                else
                {
                    if (response.id)
                        console.log("Posted as post_id "+response.id);                      
                    else if (response.post_id)
                        console.log("Posted as post_id "+response.post_id);
                    else
                        console.log("Unknown Error");
                }
            }
        });
    }
});

When when try to post the message I'm getting a "(#3) App must be on whitelist" returned. Why is this happening?

share|improve this question
See this question: stackoverflow.com/questions/7201859/… – Rob W Sep 15 '11 at 20:34
please add you answer and accept it so that others know its been answered – ghostJago Sep 18 '11 at 6:51
yeah @David Arias, how was it fixed?? – Dave Cates Sep 19 '11 at 15:14

1 Answer

Try FB.api('/me/feed'... instead of tokenUrl because FB.api will automatically add the full url prefix.

share|improve this answer
hey figured it out, but thanks for getting back to me – David Arias Sep 16 '11 at 18:29
what was the problem – BK. Sep 16 '11 at 18:30
@David Arias how did you solve? – Enrique Sep 17 '11 at 0:16

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.