Skip to content

Instantly share code, notes, and snippets.

@andreas-nesheim
Created February 5, 2020 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreas-nesheim/8f18f1086da534c4858d71b8294c5a00 to your computer and use it in GitHub Desktop.
Save andreas-nesheim/8f18f1086da534c4858d71b8294c5a00 to your computer and use it in GitHub Desktop.
private readonly string access_key = "XXXXXXXXXXXXXXXXXXXXX";
private readonly string secret_token = "XXXXXXXXXXXXXXXXXXXXX";
private readonly HttpClient httpClient = new HttpClient();
private readonly StringContent stringData = new StringContent(string.Empty);
public MillheatClient()
{
httpClient.BaseAddress = new Uri("https://api.millheat.com/");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment