This project is no longer maintained
- .net Standard: https://www.nuget.org/packages/Authsome
- Portable: https://www.nuget.org/packages/Authsome.Portable
var response = await authsome.GetAsync("https://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=en-US");
if (response.httpStatusCode == System.Net.HttpStatusCode.OK)
{
var image = response.Content.images.FirstOrDefault();
Console.WriteLine("image url" + image.url);
}
else
{
Console.WriteLine(response.httpStatusCode.ToString() + " - " + response.ErrorJson);
}
*** Look at CoreConsoleApp within the solution to see an example of how to generate an invoice within Quickbooks online.