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');
}
}
);