How to use Digest authentication in Android Retrofit?

2.8k Views Asked by At

I am creating an Android application that request to a server authenticated by digest authentication method. I am using Retrofit to do the requests. Can someone explain me how to do this?

1

There are 1 best solutions below

3
On

Based on what Jake Wharton said at here, you need to implement the Authenticator class. Apparently what you need has been figured out by Felix Queiruga at this particular answer.