How do I test a Facebook app since the recent introduction of login review?

前端 未结 1 1909
旧时难觅i
旧时难觅i 2021-01-19 03:51

I am developing a Facebook app that makes an API call to get a list of the user\'s events.

The app will use Javascript which will call the user/events edge, somethin

1条回答
  •  不思量自难忘°
    2021-01-19 04:30

    You won't need to approval of permissions for the Admins, Developers and Testers of your app. You can define those in the App Dashboard, "Roles" tab.

    https://developers.facebook.com/apps/[app_id]/roles/

    When you login with one of those users, you can request all permissions.

    Actually, this is also required to do when you submit for review. For example, when you want to request the publish_actions permission, your app must have used it in the last 30 days. This is for the reviewing team to check if you actually use that permission.

    So, you will need to use one of the roles as defined on your app and then you can request any permission from that user.

    edit: Note that even though you can request all of the permissions, you still have to actually request the permissions when you are logging in. So if you call /me/events for a user (which happens to be you, an Admin/Developer of the app), you still have to request user_events in the login scope permissions.

    0 讨论(0)
提交回复
热议问题