Skip to content

Commit

Permalink
added missing opening quote to oauth_version param name
Browse files Browse the repository at this point in the history
git-svn-id: http://oauth.googlecode.com/svn/code/obj-c/OAuthConsumer@228 f7ae4463-c52f-0410-a7dc-93bad6e629e8
  • Loading branch information
jon.r.crosby committed Nov 8, 2007
1 parent e734b32 commit f08830e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OAMutableURLRequest.m
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ - (void)prepare {
token.secret]];

// set OAuth headers
NSString *oauthHeader = [NSString stringWithFormat:@"OAuth realm=\"%@\", oauth_consumer_key=\"%@\", oauth_token=\"%@\", oauth_signature_method=\"%@\", oauth_signature=\"%@\", oauth_timestamp=\"%@\", oauth_nonce=\"%@\", oauth_version=1.0\"",
NSString *oauthHeader = [NSString stringWithFormat:@"OAuth realm=\"%@\", oauth_consumer_key=\"%@\", oauth_token=\"%@\", oauth_signature_method=\"%@\", oauth_signature=\"%@\", oauth_timestamp=\"%@\", oauth_nonce=\"%@\", oauth_version=\"1.0\"",
[realm encodedURLParameterString],
[consumer.key encodedURLParameterString],
[token.key encodedURLParameterString],
Expand Down

0 comments on commit f08830e

Please sign in to comment.