I had the same problem. There are not many similar problems to find and not solve. This is strange because it seems to be the missing configuration option "global / request / direct_front_name" that is not installed in the Core / Oauth module. How can all tutorials work without this important setup ??
Without setting "oauth", each call to / oauth / [controller] results in a resolution of "noRouteAction" (Mage_Core_Controller_Request_Http :: setPathInfo () and Mage_Core_Controller_Request_Http :: isDirectAccessFrontendName ($ storeCode)) instead of the default indexAction index.
So, the solution is to set this parameter in local configuration or in your own extension as follows
<?xml version="1.0"?> <config> [...] <global> [...] <request> [...] <direct_front_name> <oauth/> </direct_front_name> </request> </global> </config>
Later you can finally get a marker. Now I check the further process.
source share