简体   繁体   中英

C# RestSharp Cookies

So Im learning RestSharp

But I'm stuck at this problem which is getting specific string for client cookies here is my code:

 var cookieJar = new CookieContainer();
        var client = new RestClient("https://server.com")
        {
            UserAgent =
                       "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36",



        };
        client.CookieContainer = cookieJar;
        var request = new RestRequest(Method.GET);
            var cookie = client.CookieContainer.GetCookieHeader(new Uri("https://server.com"));
        MessageBox.Show(""+cookie);

and I always get the cookie empty can anyone helps me?

This will set the cookie for your client. After all, you need to do is client.Execute . The code is in C# pretty sure you can make it work for anything else.

string myUserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36";

client.CookieContainer.Add(new Cookie("UserAgent", myUserAgent) { Domain = myUri.Host });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM