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
The authorization code response contains extra characters appended to the state parameter, which therefore makes the request fail.
state
I've resolved this issue in: #71
The text was updated successfully, but these errors were encountered:
I think, this is not a good idea - use containsString instead isEqualToString.
My solution:
in LIALinkedInAuthorizationViewController.m
line 134:
// urlString = [[urlString componentsSeparatedByString:@"?"] objectAtIndex:1]; urlString = [[NSURL URLWithString:urlString] query];
Sorry, something went wrong.
Yes, it fixed the error to me too. Can you please make a fork and a PR? Thank you very much!
Did it fixed ?
I've made a pull request. All came from the end point used to authenticate.
No branches or pull requests
The authorization code response contains extra characters appended to the
state
parameter, which therefore makes the request fail.I've resolved this issue in: #71
The text was updated successfully, but these errors were encountered: