extended permissions
- by melimoreno
Hi i'm doing a fb app that update the status box(what's in your mind), i'm using set_status from facebooker .. first i have this error:
set_status needs extended permission
so i google it and find this: before_filter :ensure_has_status_update .. so i put it in my controller and that solves the problem, but when i try to update the status, all ways redirect me to a fb page that says: You have already granted permissions to this application. so i go to the controller comment before_filter :ensure_has_status_update and then go to my app again and it works..
so i want to do this
if (has_status_update == false) ask for permision
else update the status
i google it for a long time but i can't find an answer..