We have a custom made CMS that the users have the option of posting to the company's 'fan page' when they post a message. This code uses the FacebookAPI code provided by Facebook to use the Graph API in a C# application (actually a WCF webservice).
We have had various problems posting before (see this bug and this discussion). This had been working for a while, but now returns a 400/Bad Request.
I have tried two different (known working before) api tokens. No code has changed in months on this setup.
I'm wondering how I can figure out why it now will no longer post. Has something changed with the tokens its requesting?
This is the code I am using:
FacebookAPI api = new FacebookAPI(token);
Dictionary<string, string> postArgs = new Dictionary<string, string>();
postArgs["link"] = url;
postArgs["message"] = message;
try
{
JSONObject jsonresult = api.Post("me/links", postArgs);
result = "ok";
}
catch (Exception e)
{
result = "Post Failed - " + e.Message.ToString();
}
My exception is stating a 400/Bad Request
update: I also noticed that according to the Authentication Docs, some of the tokens now have an expiration, which mine doesn't seem to have. Could this be an issue? For example, my token is a ~100 char string, with 4 sections seperated by 3 pipes (|). Their examples then have an extra &expires_in=64090.