如何在我的 Facebook 粉丝页面欢迎选项卡上显示访客全名?
我使用 Page Tab
创建了我的粉丝页面。
现在我想在该页面上显示访客全名。
示例:Hello Fullname
无需身份验证也可以吗?
I have created my fan page using Page Tab
.
Now I want to display visitor Full Name on that page.
Example : Hello Fullname
It's possible without authentication?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 Javascript SDK 来实现这一点,这里是文档
...以及回答你的第二个问题,你需要获得你的应用程序的使用用户的授权才能发出任何图形 API 请求。
您需要通过执行 API 请求来获取用户名
/me?fields=name
获取用户名。I suggest using the Javascript SDK to achieve this, here's the documentation
... and in answer to your second question, you'll need to get authorisation of use user for your app to make any Graph API request.
You'll need to get the user's name by doing an API request to
/me?fields=name
get the username.