0

I currently have a site and once a user "allows" on Facebook, FB redirects the user back to my website.

This functionality is fine...however, I am trying to get this running in a canvas app. I would like to ask for permissions embedded in the canvas app and stay in the canvas app after a user clicks "allow" instead of redirecting to the site.

Kamilski81
  • 14,409
  • 33
  • 108
  • 161

1 Answers1

1

Just do it client-side – call FB.login with the permissions you want granted, and the user will stay on your canvas page.

CBroe
  • 91,630
  • 14
  • 92
  • 150
  • Or set the redirect_uri of the auth dialog to be the place you want them to go after login – Igy Jun 07 '12 at 17:17