Open davedargo opened 10 years ago
Is publish_stream necessary for a facebook authentication? Can we allow a different set of facebook permissions when using facebook for authentication?
Line 260 in handlers.py, SocialLoginHandler could be changed to:
perms = self.app.config.get('fb_perms', ['email', 'publish_stream'])
without affecting current implementations.
No, it is not necessary, if you want, you can add a change to define that in config.
Is publish_stream necessary for a facebook authentication? Can we allow a different set of facebook permissions when using facebook for authentication?
Line 260 in handlers.py, SocialLoginHandler could be changed to:
perms = self.app.config.get('fb_perms', ['email', 'publish_stream'])
without affecting current implementations.