Facebook Javascript SDK 响应属性

发布于 2024-11-01 06:58:41 字数 89 浏览 1 评论 0原文

在用户通过身份验证后,是否有一个包含我可以使用响应询问的所有属性的列表?像response.name、response.last_name 等?我想看完整的清单..

Is there a list with all the properties I can ask using response after user was authenticated? like response.name, response.last_name and other? I would like to see a full list..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风为裳 2024-11-08 06:58:41

包含以下行:

console.log(response);

在您的 Javascript 中 然后在您最喜欢的现代浏览器中加载 Firebug 并转到控制台选项卡。您应该能够将响应视为一个对象。

Include the line:

console.log(response);

in your Javascript. Then load up Firebug in your favourite modern browser and go to the console tab. You should be able to view the response as an object.

又爬满兰若 2024-11-08 06:58:41

您的案例的完整响应对象应如下所示:

{
    status: 'connected',
    authResponse: {
        access_token: '...',
        expiresIn:'...',
        signedRequest:'...',
        userID:'...'
    }
}

A full response object for you case should look like this:

{
    status: 'connected',
    authResponse: {
        access_token: '...',
        expiresIn:'...',
        signedRequest:'...',
        userID:'...'
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文