i'm working on omniauth-facebook with fb js sdk ,it work pretty good for right now ,however i do not know why it cannot request extra permission. I already set in my omniauth.rb :scope for omniauth-facebook ,but when i click login, i dont get any extra permission that i want to requeest from user. I seek over the internet and found out that i have to do like
FB.login(function(response) {
// handle the response
}, {scope: 'email,user_likes'});
but in my case,i follow the client side and come out with this.
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
// Init the SDK upon load
window.fbAsyncInit = function() {
FB.init({
appId : 'app_id', // App ID
channelUrl : '//'+window.location.hostname+'/channel', // Path to your Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth :true, //enable Oauth 2.0
xfbml : true // parse XFBML
});
// listen for and handle auth.statusChange events
//
FB.Event.subscribe('auth.login', function(response) {
if (response.authResponse) {
window.location = '/auth/facebook/callback';
}
}, {scope: 'email,user_likes'}); //i tried but its not working
FB.Event.subscribe('auth.statusChange', function(response) {
if (response.authResponse) {
// user has auth'd your app and is logged into Facebook
FB.api('/me', function(me){
if (me.name) {
document.getElementById('auth-displayname').innerHTML = me.name;
}
})
document.getElementById('auth-loggedout').style.display = 'none';
document.getElementById('auth-loggedin').style.display = 'block';
} else {
// user has not auth'd your app, or is not logged into Facebook
document.getElementById('auth-loggedout').style.display = 'block';
document.getElementById('auth-loggedin').style.display = 'none';
}
});
// respond to clicks on the login and logout links
document.getElementById('auth-loginlink').addEventListener('click', function(){
FB.login();
});
document.getElementById('auth-logoutlink').addEventListener('click', function(){
FB.logout();
});
}
hmm,if i use facebook social button and add the scope in html there,it work,but thats not what i want. Anyone here got tutorial or hints for me to proceed?