[Django]-OAuth2 specification states that 'perms' should now be called 'scope'. Please update. Django Facebook connect

0👍

Please chanage all place related to “perms” to “scope”. Ex:

if (response.session) {
                        // logged in and connected user, someone you know
                        if (response.perms) {

to

if (response.session) {
                        // logged in and connected user, someone you know
                        if (response.scope) {

Feel free if you have any problem.

Good luck.

👤Tuan

Leave a comment