We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello you have options to set extra params (- (void)setParameters:(NSArray *)parameters), but you read it only in - (NSString *)_signatureBaseString
you need add in OAMutableURLRequest.m in - (void)prepare that code for correct request
NSArray *parameters = [self parameters]; for (OARequestParameter *param in parameters) { [chunks addObject:[param URLEncodedNameValuePair]]; }
now work Yahoo, Deliciou, LinkedIn, etc
The text was updated successfully, but these errors were encountered:
https://github.com/iKorich/oauthconsumer/commit/5a410602e8ade0b51587d4a5e2bb613b7a90a444
Sorry, something went wrong.
No branches or pull requests
Hello you have options to set extra params (- (void)setParameters:(NSArray *)parameters),
but you read it only in - (NSString *)_signatureBaseString
you need add in OAMutableURLRequest.m in - (void)prepare that code for correct request
now work Yahoo, Deliciou, LinkedIn, etc
The text was updated successfully, but these errors were encountered: