I started a new facebook app with php-sdk 3.0 and I have a problem :
when the user comes on the app for the first time, he gets a page with just the facebook logo and a link “access facebook.com” even if the user is already connected to facebook …
how can I skip this step ? without previous sdk , I was able to go the permissions request screen directly ?
The dreaded facebook blue box of death. It sounds like you’re trying to do a redirect inside the app; try using javascript to do
window.top.location.href = url;instead.