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 created an action type, object type and aggregation. Action type is not approval yet. But it's work on my developer account. I'm publish an action by using the code below. It success and I can view an aggregation in my timeline. But It does not post anything on timeline/wall. How I can publish an action on timeline/wall?

FB.api(
        '/me/mynamespace:myaction?myobject=' + encodeURIComponent(url),
        'post',
        function(response) {
            if (response && response.error) {
                alert(response.error.message);
            }else if(!response){
                alert('Error');
            }
        }
    );
share|improve this question
samne problem here – tildy Apr 30 '12 at 16:53

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.