-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
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
Feature/header fields #168
base: develop
Are you sure you want to change the base?
Feature/header fields #168
Conversation
Feature/header fields
@@ -61,7 +61,7 @@ - (NSString *)nxoauth2_URLEncodedString; | |||
return (__bridge_transfer NSString *) CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, //Allocator | |||
(__bridge CFStringRef)self, //Original String | |||
NULL, //Characters to leave unescaped | |||
CFSTR("!*'();:@&=+$,/?%#[]"), //Legal Characters to be escaped | |||
NULL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you explain this change? These characters need to be escaped here for URL encoding to be RFC compliant.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was making this request based on the previous one, re-added Code!
I think you merged an old develop into this, still cannot be cleanly applied. |
…nto feature/header_fields # Conflicts: # Sources/OAuth2Client/NXOAuth2Connection.m
made some edits based on comments left below