I am trying to create my custom REST api. I have create my own module Custom/Restapi.Custom [Namespace], Restapi[Module name].
In etc folder i have created config.xml and api2.xml. Below is the code-:
Config.xml
<?xml version="1.0"?>
<config>
<modules>
<Custom_Restapi>
<version>0.1.0.0</version>
</Custom_Restapi>
</modules>
<global>
<models>
<restapi>
<class>Custom_Restapi_Model</class>
</restapi>
</models>
</config>
api2.xml
<config>
<api2>
<resource_groups>
<restapi translate="title" module="Custom_Restapi">
<title>Custom Rest API</title>
<sort_order>10</sort_order>
</restapi>
</resource_groups>
<resources>
<restapi translate="title" module="Custom_Restapi">
<group>restapi</group>
<model>restapi/api2_restapi</model>
<title>Testing My Rest API</title>
<sort_order>10</sort_order>
<privileges>
<admin>
<create>1</create>
<!-- <retrieve>1</retrieve>
<delete>1</delete>-->
</admin>
<!-- <customer>
<create>1</create>
<retrieve>1</retrieve>
<delete>1</delete>
</customer>
<guest>
<create>1</create>
<retrieve>1</retrieve>
<delete>1</delete>
</guest>-->
</privileges>
<routes>
<route_entity>
<route>/custom/createwebsite/:s</route>
<action_type>entity</action_type>
</route_entity>
</routes>
<versions>1</versions>
</restapi>
</resources>
</api2>
Model Directory Structure
app\code\local\Custom\Restapi\Model\Api2\Restapi.php. Below is code of file-:
Restapi.php
class Custom_Restapi_Model_Api2_Restapi extends Mage_Api2_Model_Resource
{
}
app\code\local\Custom\Restapi\Model\Api2\Restapi\Rest\Admin\V1.php Below is code of file-:
V1.php
class Custom_Restapi_Model_Api2_Restapi_Rest_Admin_V1 extends Custom_Restapi_Model_Api2_Restapi
{
protected function _create(){
return json_encode(array("testing","hello"));
}
protected function _retrieveCollection()
{
return json_encode(array("testing","hello"));
}
}
Etc/module configuration file is also setup.
Admin setting
I have create OAuth role admin. Under left side tab "Role Api Resource" module settings are visible and selected.
Rest Consumer setting is also configured.
Below is REST API calling script code-:
Api Calling Script Code
$consumerKey = 'ozr74egldg07dpxtkk9uq1o8bj6wwd65'; // from Admin Panel's "REST - OAuth Consumers page"
$consumerSecret = 'ozr74egldg07dpxtkk9uq1o8bj6wwd65'; // from Admin Panel's "REST - OAuth Consumers page"
// Set the OAuth callback URL to this script since it contains the logic
// to execute *after* the user authorizes this script to use the Coupon AutoGen API
$callbackUrl = "http://127.0.0.1/magento/testscript.php";
// Set the URLs below to match your Magento installation
$temporaryCredentialsRequestUrl = "http://127.0.0.1/mage_restapi/oauth/initiate?oauth_callback=" . urlencode($callbackUrl);
$adminAuthorizationUrl = 'http://127.0.0.1/mage_restapi/admin/oauth_authorize';
$accessTokenRequestUrl = 'http://127.0.0.1/mage_restapi/oauth/token';
$apiUrl = 'http://127.0.0.1/mage_restapi/api/rest';
session_start();
if (!isset($_GET['oauth_token']) && isset($_SESSION['state']) && $_SESSION['state'] == 1) {
$_SESSION['state'] = 0;
echo "try";
}
try {
$authType = ($_SESSION['state'] == 2) ? OAUTH_AUTH_TYPE_AUTHORIZATION : OAUTH_AUTH_TYPE_URI;
$oauthClient = new OAuth($consumerKey, $consumerSecret, OAUTH_SIG_METHOD_HMACSHA1, $authType);
$oauthClient->enableDebug();
if (!isset($_GET['oauth_token']) && !$_SESSION['state']) {
$requestToken = $oauthClient->getRequestToken($temporaryCredentialsRequestUrl);
$_SESSION['secret'] = $requestToken['oauth_token_secret'];
$_SESSION['state'] = 1;
header('Location: ' . $adminAuthorizationUrl . '?oauth_token=' . $requestToken['oauth_token']);
exit;
} else if ($_SESSION['state'] == 1) {
$oauthClient->setToken($_GET['oauth_token'], $_SESSION['secret']);
$accessToken = $oauthClient->getAccessToken($accessTokenRequestUrl);
$_SESSION['state'] = 2;
$_SESSION['token'] = $accessToken['oauth_token'];
$_SESSION['secret'] = $accessToken['oauth_token_secret'];
header('Location: ' . $callbackUrl);
exit;
} else {
// We have the OAuth client and token. Now, let's make the API call.
$oauthClient->setToken($_SESSION['token'], $_SESSION['secret']);
// Generate coupon codes via POST
$resourceUrl = "$apiUrl/custom";
$oauthClient->fetch($resourceUrl, OAUTH_HTTP_METHOD_POST, array(
'Accept' => 'application/json',
'Content-Type' => 'application/json',
));
$data= json_decode($oauthClient->getLastResponse(), true);
echo "Data is:<br/>".$data;
}
} catch (OAuthException $e) {
print_r($e->getMessage());
//echo "<br/>";
//print_r($e->lastResponse);
}
When i am trying to access the API then it ask for Authorize
Authorize application admin requests access to your account
After authorization application will have access to you account.
authorize button and reject button
After click on Authorize button Error-:
Invalid auth/bad request (got a 404, expected HTTP/1.1 20X or a redirect) {"messages":{"error":[{"code":404,"message":"Request does not match any route."}]}}
PHP OAuth extension does not support RSA-SHA1 support in my OAuth settings
Reference Link http://www.magentocommerce.com/knowledge-base/entry/how-to-use-extend-the-magento-rest-api-to-use-coupon-auto-generation
http://ctodilemma.com/2013/04/customising-and-extending-the-magento-rest-api/
We only use the function provided by magento for accessing the code in rest, below are the function list-:
- _create()
- _retrieve()
- _delete()
- _retrieveCollection()
- _update()
- _multiUpdate()
- _multiDelete
Error Invalid auth/bad request (got a 404, expected HTTP/1.1 20X or a redirect) {"messages":{"error":[{"code":404,"message":"Request does not match any route."}]}}
I have shared above my all analysis but i am not able to access the data.Please share your feedback.