문제

Is it possible to disable the access-token mechanism in WSO2 API Manager? So we do not have to set the authentication bearer header .I know I can set the access-token time-out to -1 seconds, to make it endless.

도움이 되었습니까?

해결책

Yes You can. WSO2 API Manager provides resource level authentication where you can specify the authentication mechanism for each HTTP verb. If you set it to 'None', then you do not need to set Authorization headers when you call the API.

As given in the document[1],when creating the API set 'AuthType' value as 'None' for all the HTTP verbs.

[1]http://docs.wso2.org/display/AM150/API+Resources

다른 팁

Also, you can edit the swagger for the resources (In latest api manager versions). In the "Design" tab of api select edit source under the "API Definition" section. Then in the swagger under the specific resource you want to skip authentication edit the attribute x-auth-type as follows

x-auth-type:None
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top