如何在c#中获取facebook签名请求

时间:2013-09-27 08:29:37

标签: c# facebook asp.net-mvc-4 visual-studio-2012 facebook-c#-sdk

我是Facebook应用程序的新手。我正在尝试用Facebook Application创建一个MVC 4应用程序作为我的项目模板。 我正在尝试捕获创建页面选项卡的页面ID,我已经以某种方式得到它。 我的问题是当有人访问我的应用程序时,我想知道他们正在查看页面选项卡的页面ID。我已经搜索了很多我知道我要使用FacebookSignedRequest的地方。但是这个班级不适合我。

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:4)

如果您只是尝试从Facebook解析signed_request参数,则可以使用以下C#代码执行此操作。

此代码还使用您自己的app_secret参数验证哈希,以确保signed_request来自Facebook。

public static string DecodeSignedRequest(string signed_request)
{
    try
    {
        if (signed_request.Contains("."))
        {
            string[] split = signed_request.Split('.');

            string signatureRaw = FixBase64String(split[0]);
            string dataRaw = FixBase64String(split[1]);

            // the decoded signature
            byte[] signature = Convert.FromBase64String(signatureRaw);

            byte[] dataBuffer = Convert.FromBase64String(dataRaw);

            // JSON object
            string data = Encoding.UTF8.GetString(dataBuffer);

            byte[] appSecretBytes = Encoding.UTF8.GetBytes(app_secret);
            System.Security.Cryptography.HMAC hmac = new System.Security.Cryptography.HMACSHA256(appSecretBytes);
            byte[] expectedHash = hmac.ComputeHash(Encoding.UTF8.GetBytes(split[1]));
            if (expectedHash.SequenceEqual(signature))
            {
                return data;
            }
        }
    }
    catch
    {
        // error
    }
    return "";
}

private static string FixBase64String(string str)
{
    while (str.Length % 4 != 0)
    {
        str = str.PadRight(str.Length + 1, '=');
    }
    return str.Replace("-", "+").Replace("_", "/");
}

答案 1 :(得分:1)

我所要做的就是创建一个Facebook客户端对象,并使用app secret调用ParseSignedRequest方法。

var fb = new FacebookClient();
dynamic signedRequest = fb.ParseSignedRequest(appSecret, Request.Form["signed_request"]);

这将返回一个Json对象,我们必须使用JObject.Parse

进行解析