<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| <?php | |
| /** | |
| * Copyright Magento 2012 | |
| * Example of products list retrieve using Customer account via Magento | |
| REST API. OAuth authorization is used | |
| */ | |
| $callbackUrl = "http://yourhost/oauth_customer.php"; | |
| $temporaryCredentialsRequestUrl = | |
| "http://magentohost/oauth/initiate?oauth_callback=" . | |
| urlencode($callbackUrl); |