private string GetRequestUri(ApiInfo apiInfo, string dataJson)
 {
     return(string.Format("{0}?apiKey={1}&hash={2}&message={3}", _host, apiInfo.Key, _utils.GenerateSecret(apiInfo.Secret, dataJson), HttpUtility.UrlEncode(dataJson)));
 }