/// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 /// <param name="debug">Include debuggin info</param>
 public Factual(string oAuthKey, string oAuthSecret, bool debug)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
     Debug = debug;
 }
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 /// <param name="debug">Include debuggin info</param>
 public Factual(string oAuthKey, string oAuthSecret, bool debug)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
     Debug = debug;
 }
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 public Factual(string oAuthKey, string oAuthSecret)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
 }
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 public Factual(string oAuthKey, string oAuthSecret)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
 }