Reputation: 2381
To get the an OAuth token back I want to use a custom URL scheme as a callback URL for my iOS app, e.g. myapp://oauth-callback
.
However it seems like Magento can not handle such a URL scheme as it returns with the following error message
HTTP Status 400: Bad Request, Response: oauth_problem=parameter_rejected&message=oauth_callback
If I set a callback URL beginning with http:// the request does work and I get back an OAuth token, the problem is that the OS opens the browser with this URL and this is an unwanted behaviour in our app.
Upvotes: 3
Views: 733
Reputation: 3057
You can try the fix provided in this pull request. Although it is for OpenMage, it should work for Magento 1.9.
Upvotes: 0
Reputation: 1587
Your url is not valid in Zend_Uri::check($url) because of 'myapp'. Here is check() function:
public static function check($uri)
{
try {
$uri = self::factory($uri);
} catch (Exception $e) {
return false;
}
return $uri->valid();
}
Let's look how the factory work:
public static function factory($uri = 'http', $className = null)
{
// Separate the scheme from the scheme-specific parts
$uri = explode(':', $uri, 2);
$scheme = strtolower($uri[0]);
$schemeSpecific = isset($uri[1]) === true ? $uri[1] : '';
if (strlen($scheme) === 0) {
#require_once 'Zend/Uri/Exception.php';
throw new Zend_Uri_Exception('An empty string was supplied for the scheme');
}
// Security check: $scheme is used to load a class file, so only alphanumerics are allowed.
if (ctype_alnum($scheme) === false) {
#require_once 'Zend/Uri/Exception.php';
throw new Zend_Uri_Exception('Illegal scheme supplied, only alphanumeric characters are permitted');
}
if ($className === null) {
/**
* Create a new Zend_Uri object for the $uri. If a subclass of Zend_Uri exists for the
* scheme, return an instance of that class. Otherwise, a Zend_Uri_Exception is thrown.
*/
switch ($scheme) {
case 'http':
// Break intentionally omitted
case 'https':
$className = 'Zend_Uri_Http';
break;
case 'mailto':
// TODO
default:
#require_once 'Zend/Uri/Exception.php';
throw new Zend_Uri_Exception("Scheme \"$scheme\" is not supported");
break;
}
}
#require_once 'Zend/Loader.php';
try {
Zend_Loader::loadClass($className);
} catch (Exception $e) {
#require_once 'Zend/Uri/Exception.php';
throw new Zend_Uri_Exception("\"$className\" not found");
}
$schemeHandler = new $className($scheme, $schemeSpecific);
if (! $schemeHandler instanceof Zend_Uri) {
#require_once 'Zend/Uri/Exception.php';
throw new Zend_Uri_Exception("\"$className\" is not an instance of Zend_Uri");
}
return $schemeHandler;
}
It use Zend_Uri_Http class for http:// and https:// schemes. You just need to add own scheme in list.
How to fix?
switch ($scheme) {
case 'http':
// Break intentionally omitted
case 'https':
$className = 'Zend_Uri_Http';
break;
case 'myapp':
$className = 'Zend_Uri_Http';
break;
case 'mailto':
// TODO
default:
#require_once 'Zend/Uri/Exception.php';
throw new Zend_Uri_Exception("Scheme \"$scheme\" is not supported");
break;
}
Upvotes: 3