pennersr / django-allauth

Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
https://allauth.org
MIT License
9.55k stars 3.03k forks source link

Facebook Developer Alert: Your app asks for read and write permissions at the same time. #315

Closed vinodpandey closed 11 years ago

vinodpandey commented 11 years ago

There is facebook developer alert with below message:

Your app asks for read and write permissions at the same time. You should only ask for write permissions when a user tries to share something to Facebook.

Below is the social accounts provider configuration used for facebook.

{ 'SCOPE': ['email', 'publish_stream'], 'AUTH_PARAMS': { 'auth_type': 'reauthenticate' }, 'METHOD': 'oauth2' , 'LOCALE_FUNC': lambda request: 'en_US' }

kabeza commented 11 years ago

publish_stream is now publish_actions, and that warning also is due to use publish_stream toghether with read_stream (if i'm not wrong)

pennersr commented 11 years ago

This is about configuration specifics -- closing.