I used to use the old v5 facebook c# sdk but it seem's all has changed in the ever quick changing world of FB :)
I used to use a simple bit of code to help get the facebook page ID from a signed request, see below. But this no longer works.
Can anyone help?
Thanks!!
FacebookSignedRequest fbSr = FacebookSignedRequest.Parse(appSecret, HttpContext.Current.Request.Form["signed_request"]);
if (fbSr != null)
{
JObject fbSrObj = JObject.Parse(fbSr.Data.ToString());
if (fbSrObj["page"] != null && fbSrObj["page"]["id"] != null)
return fbSrObj["page"]["id"].ToString();
}