I am trying to use the following code to post a message on facebook wall (Facebook C# SDK - http://facebooksdk.codeplex.com/)
Facebook.FacebookAPI api = new Facebook.FacebookAPI("my token");
JSONObject me = api.Get("/me");
var userId = me.Dictionary["id"].String;
Dictionary<string, string> postArgs = new Dictionary<string, string>();
postArgs["message"] = "Hello, world!";
api.Post("/" + userId + "/feed", postArgs);
I am able to pull the user profile information but while posting a message throwing an error message like below.
The remote server returned an error: (403) Forbidden. Description: An unhanded exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Facebook.FacebookAPIException: The remote server returned an error: (403) Forbidden.
What could be the issue ?
Any help would be appreciated
Thanks Deepu