我正在尝试通过Kentico 10中的休息服务检索页面类型的数据。 发送Post请求和检查浏览器内容的基本URL格式应该是什么?
答案 0 :(得分:1)
如果您想要检索内容,则必须使用GET
(不是POST
)。 POST
用于creating resources,PUT
用于updating。
来自文档:
Kentico REST服务的基本URL是/ rest。 例如,如果您的网站在http://localhost/Kentico运行,请使用 http://localhost/Kentico/rest作为服务的基本网址。
这是您使用所有耦合数据检索所有文档的方法:
http://localhost/Kentico/rest/content/currentsite/en-us/all/?coupleddata=true
再次,请参阅所有示例的documentation。
答案 1 :(得分:0)
尝试这样的事情:
/content/currentsite/<culture>/all/?classnames=<class code name>
Here您可以通过Kentico休息服务找到有关获取内容/数据的所有详细信息。