Ejemplo n.º 1
0
        public string ExecuteQueryWithSpecificParametersAndTemporaryCredentials(
            string url,
            HttpMethod httpMethod,
            IEnumerable <IOAuthQueryParameter> parameters,
            ITemporaryCredentials temporaryCredentials)
        {
            var queryParameters = _oAuthWebRequestGenerator.GenerateApplicationParameters(temporaryCredentials, parameters);

            return(ExecuteQueryWithSpecificParameters(url, httpMethod, queryParameters));
        }