验证签名 Facebook Connect
我已按照这个伟大的Stackoverflow问题中的说明进行操作,但我不确定此验证签名的事情。 Facebook 工具包中是否以某种方式提供了此功能,还是我必须自己做一些事情? 文档对于如何执行此操作以及它是否已经烘焙并不非常清楚在 facebook 工具包中我不想花太多时间在上面。
有人做过这个吗? 应该提到我在 C# 中使用标准 ASP.NET Web 应用程序。 任何帮助,将不胜感激!
I have followed the instructions in this great Stackoverflow question but i am not sure about this verify signature thing. Is this provided in some way in the Facebook Toolkit or do i have to do something myself? The documentation is not superclear on how to do this and if it is already baked in the facebook toolkit i don't want to spend to much time on it.
Anyone have done this? Should mention i use a standard ASP.NET Web Application in C#. Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前,你必须自己做。 我提供了一个简单的方法,您可以调用它来查看签名是否有效。
注意:SecretKey 和 ApiKey 是 Facebook 提供的值,您需要设置。
At the moment, you have to do it yourself. I've provided a simple method you can call to see if the signature is valid or not.
Note: SecretKey and ApiKey are values provided by Facebook that you need to set.
您可以使用 FBConnectAuth 来完成此操作,它的作用与上面相同,而且还多了一点。
You can do this using FBConnectAuth, it does the same as above, and a little more.