Webrequest cannot get google spreadsheets jsonSolved

webrequest.Enqueue("https://spreadsheets.google.com/feeds/list/11cUGCrzJR3_RHghgXhKeHZmhc99SNEyJQA1JhadbJ1c/od6/public/basic?alt=json", null, (code, response) => { if (code != 200 || response == null) { Puts($"Couldn't get an answer from Google!"); return; } Puts($"Google answered:"); }, this, RequestMethod.GET);

this url is same problem  https://docs.google.com/spreadsheets/u/5/d/e/2PACX-1vTY4yr17cpdzGhjTybDEyLiEsIAZRdyhjd50kNT_n-n1Y3Oakpe1PV9nolWecfjd6_H2f5vahn3tNKL/pubhtml

its always show me "Couldn't get an answer from Google!"
and i try this (Puts($"Couldn't get an answer from Google! {code}");)
but the console still show "Couldn't get an answer from Google!  0"
its have any method to solve webrequest

 
That generally means that the certificate used does not work on the Rust server. You may have to wait until our standalone webclient is released with uMod, as Oxide is relying on what the game provides.
ok thanks Wulf
Locked automatically