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 answers

3
EpicPandaForce 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.