I've been looking quite a lot for an actual example of how to implement asking for permissions with facebook login, but I couldn't find any. All I can find is the name of the permissions, advice on what to ask, but no examples.
The question is: Where and how can I ask for permissions using php or js? A bit of code would be very helpful. I am new to facebook developing and I've started reading all I can about facebook login and facebook api and trying to do a couple of small apps so I get used to how things work, but I am a bit stuck.
Edit I found this code, which seems to be what I've been looking for:
FB.login(function(response) {
// handle the response
}, {scope: 'email,publish_actions'})
