/// <summary> /// Constructor /// </summary> /// <param name="apiKey"></param> /// <param name="accountId"></param> public CloudScrapeClient(string apiKey, string accountId) { this.apiKey = apiKey; this.accountId = accountId; this.objExecutions = new CloudScrapeExecutions(this); this.objRuns = new CloudScrapeRuns(this); }
/// <summary> /// Constructor /// </summary> /// <param name="apiKey"></param> /// <param name="accountId"></param> public CloudScrapeClient(string apiKey, string accountId) { this.accountId = accountId; this.accessKey = CreateMD5(accountId + apiKey).ToLower(); this.objExecutions = new CloudScrapeExecutions(this); this.objRuns = new CloudScrapeRuns(this); }