After a request I need to store cookies for the next request. How to do?
I have this code in C # and I should bring it to B4X
I have this code in C # and I should bring it to B4X
C#:
CookieContainer cookieJar = new CookieContainer();
client = new RestClient(@"https://....." )
{
CookieContainer = cookieJar // <------
};
req = new RestRequest(Method.GET);
res = client.Execute(req);