-
Notifications
You must be signed in to change notification settings - Fork 159
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
validateIdToken fails on new version #171
Comments
Hi @shaun-pendrigh Thanks, will look into the issue. In the meantime, please feel free to raise a PR for the fix. |
Hi @shaun-pendrigh Created a new branch release-4.1.3 and this PR: #174 to fix the issue. Please test your use case in this new branch. If all looks good, will merge this PR into master and will release this change. Thanks. |
Thanks @rajeshgupta723, will do asap |
Hi @rajeshgupta723. The problem does not seem to be resolved. The getKeyFromJWKsURI is still having an error. I have tried to unpack the logic and understand what is going on in order to assist, but I am certainly not an expert in this. I eventually managed to log the response as it is coming back in version 4.0.0 as well as the new 4.1.3 branch. In version 4.0.0 the response was in the "body" property and it was a valid json string. In the new version 4.1.3 there is no json property, it is undefined. The keys that the response needs are in the "data" property but it does not seem to be in the same json string format as before. So I am unsure of how to process that "data" property in order to pass correctly as an array of keys. I don't know enough about Axios to understand the response formats. But hopefully what I have found will help you to know the answer. |
Hi @shaun-pendrigh, thanks for providing the log from diff versions, this was helpful. I've pushed the fix to release-4.1.3 branch. Would you please test and confirm the fix, it that works for you now? Thanks |
I am not sure if I have done anything wrong in the testing as I am guessing you expect this update to fix the issue. However I still see this error:
I see your change to getKeyFromJWKsURI has: But it seems response.data is not valid JSON. Again I am not sure how Axios returns this data. But looking at the log file this data does not have the expected formatting around the property names for example to be valid JSON. Let me know if there is more I can do to help this process. |
Hi @shaun-pendrigh could you please get the latest from branch release-4.1.3, and check whether the issue is resolved? Thanks |
My findings are as follows:
Hope that helps. |
Hi @shaun-pendrigh Thanks for your findings. I've reviewed and made updates to fix this. Could you please get latest from the branch release-4.1.3, and check? Thanks |
@rajeshgupta723 can you confirm what change you made? There does not seem to be any change between the current branch release-4.1.3 and the one I downloaded last time to test. |
@shaun-pendrigh The change is in oauthclient.js to not look for response json property. sorry I thought it was pushed, just now pushed it. please get latest. Thanks. |
@rajeshgupta723 ok thanks got the updates now. My test of validateIdToken is now passing. Thank you |
This should have been a breaking change. Led to a waste of 5 hours for our dev team. |
Since upgrading from 4.0.0 to 4.1.2, validateIdToken fails with the following message:
I modified the sample program to add the OAuthClient.scopes.OpenId, OAuthClient.scopes.Profile, OAuthClient.scopes.Email scopes and added a call to validateIdToken after the createToken call and recreated the error.
I then forced the intuit-oauth version back to 4.0.0 and ran it again and it worked as expected, confirming it is an issue in the new version.
The text was updated successfully, but these errors were encountered: