Replaced 'q' by 'pagename' so that the basestring is encoded right. The correct basestring is needed to create the right signature in the OAuth authentication process.
parent
82abc32a14
commit
a665ebafa4
|
@ -293,8 +293,8 @@ class OAuthRequest {
|
||||||
}
|
}
|
||||||
// fix for friendica redirect system
|
// fix for friendica redirect system
|
||||||
|
|
||||||
$http_url = substr($http_url, 0, strpos($http_url,$parameters['q'])+strlen($parameters['q']));
|
$http_url = substr($http_url, 0, strpos($http_url,$parameters['pagename'])+strlen($parameters['pagename']));
|
||||||
unset( $parameters['q'] );
|
unset( $parameters['pagename'] );
|
||||||
|
|
||||||
//echo "<pre>".__function__."\n"; var_dump($http_method, $http_url, $parameters, $_SERVER['REQUEST_URI']); killme();
|
//echo "<pre>".__function__."\n"; var_dump($http_method, $http_url, $parameters, $_SERVER['REQUEST_URI']); killme();
|
||||||
return new OAuthRequest($http_method, $http_url, $parameters);
|
return new OAuthRequest($http_method, $http_url, $parameters);
|
||||||
|
|
Loading…
Reference in New Issue