/// <summary> /// User Authentication API /// </summary> /// <param name="Models.UserAuthenticationInput">Object containing request parameters</param> /// <return>Returns the Models.UserAuthenticationModelResponse response from the API call</return> public Models.UserAuthenticationModelResponse UserAuthentication(Models.UserAuthenticationInput input) { Task <Models.UserAuthenticationModelResponse> t = UserAuthenticationAsync(input); APIHelper.RunTaskSynchronously(t); return(t.Result); }
/// <summary> /// User Authentication API /// </summary> /// <param name="Models.UserAuthenticationInput">Object containing request parameters</param> /// <return>Returns the Models.UserAuthenticationModelResponse response from the API call</return> public async Task <Models.UserAuthenticationModelResponse> UserAuthenticationAsync(Models.UserAuthenticationInput input) { //validating required parameters if (null == input.User) { throw new ArgumentNullException("user", "The property \"User\" in the input object cannot be null."); } if (null == input.Password) { throw new ArgumentNullException("password", "The property \"Password\" in the input object cannot be null."); } //the base uri for api requests string _baseUri = Configuration.GetBaseURI(Configuration.Servers.PATH); //prepare query string for API call StringBuilder _queryBuilder = new StringBuilder(_baseUri); _queryBuilder.Append("/a/u/l"); //process optional query parameters APIHelper.AppendUrlWithQueryParameters(_queryBuilder, new Dictionary <string, object>() { { "user", input.User }, { "password", input.Password } }, ArrayDeserializationFormat, ParameterSeparator); //validate and preprocess url string _queryUrl = APIHelper.CleanUrl(_queryBuilder); //append request with appropriate headers and parameters var _headers = new Dictionary <string, string>() { { "user-agent", "SMASH" } }; //prepare the API call request to fetch the response HttpRequest _request = ClientInstance.Get(_queryUrl, _headers); //Custom Authentication to be added for authorization AuthUtility.AppendCustomAuthParams(_request); //invoke request and get response HttpStringResponse _response = (HttpStringResponse)await ClientInstance.ExecuteAsStringAsync(_request).ConfigureAwait(false); HttpContext _context = new HttpContext(_request, _response); //return null on 404 if (_response.StatusCode == 404) { return(null); } //handle errors defined at the API level base.ValidateResponse(_response, _context); try { return(APIHelper.JsonDeserialize <Models.UserAuthenticationModelResponse>(_response.Body)); } catch (Exception _ex) { throw new APIException("Failed to parse the response: " + _ex.Message, _context); } }