How do you determine if a REST webservice is using Basic, Kerberos, NTLM, or one of the many other authentication methods?
|
|
|
When you send an unauthenticated request the service has to respond with a "HTTP/1.1 401 Unauthorized" and the response contains a
it wants a Digest authentication. If the response looks like:
then it wants a Basic authentication. Some (poorly) implemented servers/sites don't handle the Basic correctly and respond directly with 403 Forbidden instead of challenging first. NTLM is similar in as the server reponds with a 401 and a WWW-Authenticate header with the value Unfortunately REST does not come with a WSDL style description of service to discover the authentication scheme used a priori. |
|||||
|
|
You send it a request, presumably get an HTTP 401 code, and look at the |
|||||
|
|
If it's a black box scenario, I usually connect with Fiddler, and inspect the actual traffic. |
|||
|
|