Proxomo.ProxomoApi.GetAuthToken C# (CSharp) Méthode

GetAuthToken() private méthode

private GetAuthToken ( ) : void
Résultat void
        private void GetAuthToken()
        {
            string url = string.Format("{0}/security/accesstoken/get?applicationid={1}&proxomoAPIKey={2}", baseURL, HttpUtility.UrlEncode(_applicationID), HttpUtility.UrlEncode(_proxomoAPIKey));

            using (ProxomoWebRequest<Token> p = new ProxomoWebRequest<Token>(ValidateSSLCert, Format))
            {
                //AuthToken = p.GetData(url, "GET", string.Empty);
                //AuthToken.ExpiresDate = Utility.ConvertFromUnixTimestamp(AuthToken.Expires);
            }
        }