Viewing 6 replies - 1 through 6 (of 6 total)
  • I had the same problem, I think FB may have removed the public_stream permission…

    Find the fball_connect.js file in the plugins folder (facebookall/assests/js)

    Go to Line 14

    Remove public_stream from the scope parameters

    Save + you should now be able to login with FB
    Its possible some functions may not work with the removable of the permission but I haven’t had a look at what could replace it?

    Cheers

    Kieeiz
    just wanted to say that worked.

    I don’t know yet if that has removed any functions but it logs in now

    In file facebookall/assets/js/fball_connect.js on line 14, I don’t see “public_stream”. I think you mean “publish_stream” should be removed.

    So the line changes from this:
    var openedwin = window.open(‘https://graph.facebook.com/oauth/authorize?client_id=’ + clientid.value + ‘&redirect_uri=’ + redirecturi.value + ‘&scope=email,user_birthday,user_hometown,user_location,user_work_history,user_website,publish_stream&display=popup’, ”, ‘scrollbars=no, menubar=no, height=’+height+’, width=’+width+’, top=’+top+’, left=’+left+’, resizable=yes, toolbar=no, status=no’);

    to this:
    var openedwin = window.open(‘https://graph.facebook.com/oauth/authorize?client_id=’ + clientid.value + ‘&redirect_uri=’ + redirecturi.value + ‘&scope=email,user_birthday,user_hometown,user_location,user_work_history,user_website&display=popup’, ”, ‘scrollbars=no, menubar=no, height=’+height+’, width=’+width+’, top=’+top+’, left=’+left+’, resizable=yes, toolbar=no, status=no’);

    This does seem to work, but I’m no expert on this so would like some confirmation.

    Plugin Author sourceaddons

    (@sourceaddons)

    Hi all,
    Yes this is the fixed by removing “publish_strem” permission from fball_connect.js
    we updating plugin with more extra features and compatible with graph api 2.
    releasing new version ASAP.
    Thanks

    Plugin Author sourceaddons

    (@sourceaddons)

    Hi,

    Also this error only shows for app admin, For users this is not shows cause they can edit their permission so no error will come for other users.
    Thanks

    I also got the same problem like this. Still cannot be solve! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Error on login with facebook’ is closed to new replies.