在magento上发出REST请求的URL是什么?
我的Magento安装在http://myserver.com/
的服务器根目录下运行,没有magento目录。
我如何知道网址?
答案 0 :(得分: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
答案 1 :(得分:2)
REST wiki page包含您需要的信息。
https://magentohost.example.com/api/rest/
答案 2 :(得分:2)