I have this request
var response = await client.GetAsync("https://api.github.com/[path]");
and I should get this response
{
"name": "",
"path": "",
"sha": "",
"size": ,
"url": "",
"html_url": "",
"git_url": "",
"download_url": "",
"type": "",
"content": "",
"encoding": "",
"_links": {
"self": "",
"git": "",
"html": ""
}
}
And I want to parse this to get the "sha" value.
I tried everything I could find, so I can't rly show you what I have tried. I hope someone will be able to help me, ty.