我已经在Magento工作了几个星期,并且已经学会了如何成功编写自定义REST服务。我的问题是我需要通过HTTPS使它们可用。例如,如果URI类似于:
http://127.0.0.1/magento/api/rest/v1/stores
我想只能通过以下网址访问:
https://127.0.0.1/magento/api/rest/v1/stores
对此的任何帮助将不胜感激。
答案 0 :(得分:0)
设置controller routes to be secure in your extension的标准方法是config.xml
。所以在你的情况下它可能是这样的:
<frontend>
<secure_url>
<magento_api_rest>/magento/api/rest</magento_api_rest>
</secure_url>
</frontend>