My application on facebook does the registration part and hence aquires the offline access token which i am saving in the database for future use. Then when in java application where i take the offline access token from the database without the user having to log in i am able to retrieve the friendlist from the application by using the offline access token . Is there any mechanism by which i can post to the friends wall by using the offline access token . I tried graph.facebook.com/FRIENDS_ID/feed?access_token=OFFLINE_ACCESS_TOKEN&message=MY_MESSAGE but it returned an empty data array { "data": [
] } But i also tried out the same by using active access token but i got the same thing. What are the ways by which i can post on friends wall using java application without the user logging in having the offline access token.