What is your first and second OAuth request? And then, what's your
real request, with the tokens?
Regards,
Mauricio
var credentialApplier = new QueryPathCredentialApplier(new Dictionary<string, string> { { "header_auth", "value_auth" } });
dynamic order = Restfulie.At(resourceURI).WithCredentialApplier(credentialApplier).Get();
I still didn't look to the implementation. I will do it this weekend!
But yes, of course we are interested in your contribution! :)
Regards,
Mauricio
var credentialApplier = new QueryPathCredentialApplier(new Dictionary<string, string> { { "header_auth", "value_auth" } });
dynamic order = Restfulie.At(resourceURI).WithCredentialApplier(credentialApplier).Get();
var credentialApplier = new QueryPathCredentialApplier(new Dictionary<string, string> { { "header_auth", "value_auth" } });
dynamic order = Restfulie.WithCredentialApplier(credentialApplier).At(resourceURI).Get();