I am trying to post to a users 'Activity Feed' but I don't understand how.
Here is my demo application: http://bazaar-market.co.uk/facebook_test/car.html
You can view the source to see all the code as it's all HTML.
<script type="text/javascript">
function postView()
{
FB.api(
'/me/fandango-auctions:view',
'post',
{ item : 'http://bazaar-market.co.uk/facebook_test/car.html' },
function(response) {
if (!response || response.error) {
alert("Error");
} else {
alert('View was successful! Action ID: ' + response.id);
}
console.log(response);
});
}
</script>
I am getting the error:
This method must be called with an app access_token
If I disable access_token's in the app's settings then It says something like:
You must use an access_token to access the users account details
Can anyone help?