kind of a difficult situation to describe, but I'll try:
I've developed a small website with a facebook login via the recent facebook php sdk and the Zend Framework. If a user calls the index action, a facebook object is being created, as well as a loginurl via
$redirect_uri = "http://xxxxx/index/form";
$params = array(
'scope' => 'email',
'redirect_uri' => $redirect_uri
);
$loginUrl = $fb->getLoginUrl( $params );
So a user is redirected to the form action where he enters some data. So far, so good, user gets logged in and redirected, where his firstname, lastname and email are prefilled in the form.
The problem now is:
The Zend project is running on my companys server, but owner of the project is a client. He wants to have the website on HIS domain, but just virtually. So if a user requests e.g.
http://client.domain.com/coolsitename
it still is deployed on
http://mywebserver.com/zendproject
For that the client has set up a reverse proxy which redirects all requests to our webserver, but not visible to the user.
So far, so good. Website still works, I changed all paths in the code to the new "reverse proxy-path". User still gets to indexAction with a facebook login button and the facebook permissions dialog appears, BUT:
If the user accepts, he (just sometimes !) doesn't get redirected to the formAction but back to the indexAction, the url is:
http://client.domain.com/coolsitename/index/#_=_
php error_log() revealed following Exception is being thrown:
OAuthException: An active access token must be used to query information about the current user.
If he clicks on the login button again, he directly gets redirected to the form with prefilled information, as intended.
But in the other cases, the user is being redirected directly to the formAction, as he should be, because I first check for a logged in user via
$uid = $fb->getUser();
which returns a valid userID. BUT: the following command
try {
$me = $fb->api('/me', 'GET');
$this->view->me = $me;
...
is being ignored! Even if I try to print the value via
Zend_Debug::dump("ME: " . $me);
nothing is being printed. Not even the "ME:". I find this hard to understand and can't find any error in my code! :-(
Hope I could describe my problem so that any experienced reader could follow... Otherwise feel free to ask for more information.