First I tried to post message to my id which successfully sent to my wall. Now I am trying to post a message to a particular friend's Facebook wall using Python as shown in my code below:
friends = graph.get_object("me/friends")
friends_id = friends['data'][0]['id']
graph.put_object(friends_id,"feed",message="For testing purpose sent from terminal")
When I tried to post the message to my friend I am getting the errorL
"facebook.GraphAPIError: (#200) Feed story publishing to other users is disabled for this application"
I tried to fix the error, but I got the solution like "we are not able to post friend's feed".