I'm developing a c# application that uses Graph api to interact with facebook platform. Now I'm trying to post a message on wall of a friend and I 've this error
(OAuthException) (#200) Feed story publishing to other users is disabled for this application
I used this code (csUserId is string with id of a valid user, if I put "me" it works, with a user code it gives exception=
dynamic cRes = m_cFB.Post("/"+csUserId+"/feed", new
{
message = "Final Test",
link = "http://www.test.it"
});
I found on net several solutions, like Disable "February 2013 Breaking Changes", but I didn't find it in my application settings. I found only those ones July 2013 Breaking Changes: October 2013 Breaking Changes and I disabled them. As authorizations I set
User & Friend Permissions: user_birthday user_likes friends_birthday friends_likes
Autorizzazioni aggiuntive: publish_stream read_stream read_friendlists
But exception still occurrs. Could you help me? Thanks