Esempio n. 1
0
        private static async Task <string> GetAccessToken(string key, string secret)
        {
            var client   = new AUTHENTICATIONApi();
            var response = await client.ApiV3AuthKeyPostAsync(new InlineObject(key, secret));

            return(response.Data.Token);
        }
 public AUTHENTICATIONApiTests()
 {
     instance = new AUTHENTICATIONApi();
 }