3

Magento で REST リクエストを行うための URL は?

私の Magento インストールはhttp://myserver.com/、magento ディレクトリなしで のサーバー ルートで実行されています。

URL を知るにはどうすればよいですか?

4

3 に答える 3

3

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
于 2012-10-11T07:37:32.047 に答える
2

REST wiki ページには、必要な情報が含まれています。

https://magentohost.example.com/api/rest/
于 2012-05-30T17:03:21.137 に答える