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 am fetching posts from a specific user on facebook (i've got permissions, read_stream and offline_access). But when i try to fetch these a user needs to be logged in. Since i want these posts to be made visible without having to be logged in to facebook (or even have a facebook account), i'm kind of stuck on this one?

Can anyone help me out?

FB.api('/'+id+'/posts', { limit: 5 }, function(response) {
            var items = '';
            $.each(response.data, function(index, post){
                var msg =  post.message;
                if(post.message === undefined){
                    var msg = post.description;
                }
                if(post.link === undefined){    
                    if((index+1) % 2 === 0){
                        items += '<li class="even">'+msg+'</li>';
                    }else{
                        items += '<li>'+msg+'</li>';
                    }
                }else{
                    if((index+1) % 2 === 0){
                        items += '<li class="even"><a href="'+post.link+'">'+msg+'</a></li>';
                    }else{
                        items += '<li><a href="'+post.link+'">'+msg+'</a></li>';
                    }
                }
            });

            $('.box.facebook .innerbox ul').html(items);
            $('.box.facebook .loader').hide();
        });
share|improve this question
1  
Are you saying that you cannot make facebook api request without a user account or that particular user has to be logged in for you to read his posts. – doc_180 Mar 14 '11 at 20:15
Yes, i'm trying to fetch a feed and show it on a page, just like you can show tweets without having a twitter account. – KristofHouben Mar 15 '11 at 10:22

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.