I've been struggling for a while with a question having to do with setting up a facebook app for wordpress that pulls photos from user pages on facebook. The problem I'm having has to do with the authentication process. Facebook seems to require that an app specify (in the app settings on facebook) a url domain from which authentication requests originate and to which a user is redirected after a successful login/authentication process. I'm using the PHP SDK for facebook, so the redirect is set when you call the getLoginURL() function like so:
$params = array(
'scope' => 'user_photos,user_photo_video_tags',
'redirect => 'http://redirect/uri'
);
$facebook->getLoginUrl($params);
The problem is that I'm designing an app that will be used on multiple Wordpress installs, so obviously I cannot specify all the url domains that the app will be used on in the app settings. I'm pretty sure that there is a way around this, but I am not sure what it is. Does anyone know how this might be achieved? I think one way is to use a client-side authentication flow and then set it up as a "Desktop App" but I cannot use a client-side login flow. Any help would be wonderful!!