我想描述一下wadl中的http基本身份验证,实现这一点最具描述性的方法是什么?
最佳答案
由于基本身份验证是作为头实现的,所以只需在请求中使用param。
<method name="GET">
<request>
<param name="Authorization" style="header" type="xs:string" required="true" />
<!-- other headers... -->
</request>
<response>
<!-- repsonse.. -->
</response>
</method>
关于http - 在WADL中定义HTTP基本身份验证 header 的最具描述性的方法是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11757048/