facebook 应用程序使用 php api 获取用户名
我发现使用 file_get_contents 像
json_decode(file_get_contents('http://graphdotfacebookdotcom/'.$uid));
会使我的应用程序加载速度非常慢,有什么方法可以检索 facebook 用户的用户名吗?
谢谢
i 've found using file_get_contents like
json_decode(file_get_contents('http://graphdotfacebookdotcom/'.$uid));
will make my application very slow to load, are there any methods to retrieve the username of the facebook user?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以为此使用 facebook sdk。
要查看完整的示例 https://github.com/facebook/ php-sdk/blob/master/examples/example.php
You may use the facebook sdk for this.
To see the complete example https://github.com/facebook/php-sdk/blob/master/examples/example.php
不要忘记在顶部包含 facebook.php
Don't forget to include facebook.php at the top
为什么不使用 Facebook PHP SDK 来获取详细信息。
您也可以获取其他基本信息,而无需花费时间。
Why dont you use Facebook PHP SDK to get the details.
You can get the other basic information also without time consuming.
您可以通过请求更少的信息来加快速度,如下所示(在 PHP 中):
在 JS SDK 中,如下所示:
You can speed this up by requesting less information like so (in PHP):
and in the JS SDK like so:
不,没有办法加快速度。
No. There's no way to speed it up.