Magento で REST リクエストを行うための URL は?
私の Magento インストールはhttp://myserver.com/
、magento ディレクトリなしで のサーバー ルートで実行されています。
URL を知るにはどうすればよいですか?
Magento で REST リクエストを行うための URL は?
私の Magento インストールはhttp://myserver.com/
、magento ディレクトリなしで のサーバー ルートで実行されています。
URL を知るにはどうすればよいですか?
All URLs in REST API have the following base URL.
http://myserver.com/api/rest/
For example if you want the list of customers in Magento, using a GET HTTP method:
http://myserver.com/api/rest/customers
where
http://myserver.com/api/rest/ - endpoint
/customers - action URL
REST wiki ページには、必要な情報が含まれています。
https://magentohost.example.com/api/rest/