Last active
June 8, 2024 07:30
-
-
Save tsuharesu/cbfd8f02d46498b01f1b to your computer and use it in GitHub Desktop.
Handle Cookies easily with Retrofit/OkHttp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Somewhere you create a new OkHttpClient and use it on all your requests. | |
*/ | |
OkHttpClient okHttpClient = new OkHttpClient(); | |
okHttpClient.interceptors().add(new AddCookiesInterceptor()); | |
okHttpClient.interceptors().add(new ReceivedCookiesInterceptor()); |
@arvi can you please let me know how can you do that. persists server request cookie even if app is destroyed!. This one
Please the cookies are of which type e.g strings e.t.c cos i need that to create a custom response for retrofit
How to get url in AddCookiesInterceptor
Thanks
I used above steps to store the cookie then add on request.
Worked on actively on login and continue use.
But once close and open the app not worked.
(Once restart the comes CSRF token invalid issue.)
It really works. Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank