I am using following piece of code to publish my object to facebook using open graph however i am dumbstruck by the following error since 2days.An early reply is very valuable, Thanks S.
Technology used:Asp.net mvc3 & C#
FacebookClient fb = new FacebookClient("AppID", "AppSecret");
fb.AccessToken = "AccessToken";
var parameters = new Dictionary<string, object>
{
{"og:type", "appnamespace:object"},
{"og:url", "objecturl"},
{
"blog", "url-to-post"
}
};
try
{
var Response = fb.Post("https://graph.facebook.com/me/namespace:objecturl", parameters);
}
catch (FacebookApiException ex)
{
}
Exception: (OAuthException) (#100) Application 276304102435847 does not own 175053105965645 action type
Thanks in advance, S