Exemplo n.º 1
0
        public ApiContext(string connStrName = "SharpSpring")
        {
            ParseConnectionString(connStrName);
            if (string.IsNullOrEmpty(accountId) || string.IsNullOrEmpty(secretKey) || string.IsNullOrEmpty(baseUrl))
            {
                throw new Exception("Invalid SharpSpring connection string");
            }

            apiContextGet = new ApiContextGet(this);
        }
Exemplo n.º 2
0
        public ApiContext(string accountId, string secretKey, string baseUrl = "http://api.sharpspring.com/pubapi/v1.2/")
        {
            this.accountId = accountId;
            this.secretKey = secretKey;
            this.baseUrl   = baseUrl;

            if (string.IsNullOrEmpty(accountId) || string.IsNullOrEmpty(secretKey) || string.IsNullOrEmpty(baseUrl))
            {
                throw new Exception("Invalid SharpSpring connection string");
            }

            apiContextGet = new ApiContextGet(this);
        }