3

在 magento 上发出 REST 请求的 URL 是什么?

我的 Magento 安装在服务器根目录上运行http://myserver.com/,没有 magento 目录。

我怎么知道网址?

4

3 回答 3

3

REST API 中的所有 URL 都具有以下基本 URL。

  http://myserver.com/api/rest/

例如,如果您想要 Magento 中的客户列表,请使用 GET HTTP 方法:

  http://myserver.com/api/rest/customers

在哪里

http://myserver.com/api/rest/ - endpoint
/customers - action URL
于 2012-10-11T07:37:32.047 回答
2

http://myserver.com/index.php/api用于 Soap http://myserver.com/index.php/api/rest用于 REST

于 2012-07-05T08:21:21.880 回答
2

REST wiki 页面包含您需要的信息。

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