I am unable to post of Wall of a page. The code used to work few days back but now it is not working. My App made a post about 1.5 months back using the following code:
WebClient wc = new WebClient();
NameValueCollection PostData = new NameValueCollection();
PostData["access_token"] = ACCESSTOKEN;
PostData["name"] = "Test M";
PostData["description"] = "Test M";
PostData["message"] = "Test M";
PostData["link"] = "http://www.yettoknow.com";
byte[] response = wc.UploadValues("https://graph.facebook.com/" + PROFILEID + "/feed", "POST", PostData);
string res = Encoding.ASCII.GetString(response);
I had tried different methods to make the post. I use to get a JSON response with an ID and I am able to view the message using Graph API for that ID but the post is not visible on my page's wall.
I am not sure if I need to change some settings related to privacy.