using System;
using Flurl;
using Flurl.Http;
Console.WriteLine("Hello World");
try
{
var person = await "https://graph.microsoft.com/v1.0/".AppendPathSegment("users")
.WithOAuthBearerToken("my_oauth_token")
.GetStringAsync();
Console.WriteLine("!Hello World" + person);
}
catch(Exception e)
Console.WriteLine("!Hello World: " + e.Message);