This is not programming problem, i am using port forward for the tomcat server. 8052->tomcat
You can't get correct 8052 port if you are using port forward, always get 80 by php code.
In the Facebook SDK, base_facebook.php
public function getLoginUrl($params=array()) {
$this->establishCSRFTokenState();
$currentUrl = $this->getCurrentUrl();
You can see it will get url from function getCurrentUrl, go to edit it
// use port if non default
if(isset($_SESSION['server_port'])){
$port = $_SESSION['server_port'];
}else{
$port =
isset($parts['port']) &&
(($protocol === 'http://' && $parts['port'] !== 80) ||
($protocol === 'https://' && $parts['port'] !== 443))
? ':' . $parts['port'] : '';
}
// rebuild
return $protocol . $parts['host'] .':'. $port . $parts['path'] . $query;
I preset session server_port by using javascript(can get correct port), now use it as the port by the above code, the try the following code can get correct url which can getUser() after login.
$login_url = $facebook->getLoginUrl()
PS: It seems okay if input url by my self
$login_url = $facebook->getLoginUrl(array(
'scope' => 'email,publish_stream',
'redirect_uri' => $url
));