使用Graph API访问用户语言?

Mat*_*ren 5 user-permissions facebook-graph-api

如何使用Facebook GRAPH API访问用户的语言?我没有在权限的任何地方看到它,我无法以任何其他方式找到它.如果用户列出他们说西班牙语或法语,我该如何找到?

Har*_*K T 8

您可以从https://graph.facebook.com/me获取语​​言.

如果您正在查找@ chacham15提及的用户区域设置,那么它来自locale变量.请参阅 https://graph.facebook.com/harikt.

您可以尝试http://developers.facebook.com/tools/explorer?method=GET&path=me并查看它的实际效果.

更新:

该权限user_likes需要访问languages数组.

    [languages] => Array
    (
        [0] => Array
            (
                [id] => 105692839465644
                [name] => Malayalam
            )

        [1] => Array
            (
                [id] => 106059522759137
                [name] => English
            )

    )
Run Code Online (Sandbox Code Playgroud)

希望这能解决您的问题.