如何使用 PHP SDK 实现 appsecret_proof

How to implement appsecret_proof with PHP SDK

我正在尝试在我的网络应用程序中实施 appsecret_proof。我正在使用 PHP SDK。我在互联网上搜索了一些解决方案,但有一些令人困惑的信息。有些页面说你只需要将你的应用程序 Settings/Advanced/Security/ Require App Secret 设置为 yes 并且 PHP SDK 会自动发送 'appsecret_proof' 调用,但其他人说你必须添加 'appsecret_proof' 作为调用的参数。什么是真的?

如果我必须向调用添加参数,我该如何将其添加到此

$graphResponse = $fb->get('/me?fields=id,name,first_name,last_name,email,picture');

but others say you have to add 'appsecret_proof' as a parameter to a call. What is the true?

获取有关此类问题的正确、可靠信息的最简单方法始终是查看官方文档。

https://developers.facebook.com/docs/graph-api/securing-requests/ 说:

If you're using the official PHP SDK, the appsecret_proof parameter is automatically added.