I am now attempting to use the refresh_token that is valid for 90 days to get an auth token. I get an error "":\"Failed to resolve API Key variable request.header.un\"\n \t\t}\n" this is from my C# . I am sure my refresh_token is accurate. Here is the code:
string url = string.Format("https://api.
RestClient client = new RestClient(url);
RestRequest postRequest = new RestRequest(Method.POST);
postRequest.AddHeader("cache-
postRequest.AddHeader("
postRequest.AddParameter("
// This is where the post is executed
IRestResponse response = client.Execute(postRequest);