Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
await userinfo_async doesn't properly resolve the coroutine.
` from auth0.asyncify import asyncify from auth0.authentication import Users as AuthUsers
U = asyncify(AuthUsers) u = U(domain=AUTH0_DOMAIN) user_info = await u.userinfo_async(token) `
Works fine with 4.5.0
4.6.0
3.11.4
The text was updated successfully, but these errors were encountered:
hi @Cruppelt - thanks for raising this
This should be fixed when in 4.6.1 which should be released shortly #559
4.6.1
Sorry, something went wrong.
No branches or pull requests
Checklist
Description
await userinfo_async doesn't properly resolve the coroutine.
Reproduction
`
from auth0.asyncify import asyncify
from auth0.authentication import Users as AuthUsers
U = asyncify(AuthUsers)
u = U(domain=AUTH0_DOMAIN)
user_info = await u.userinfo_async(token)
`
Additional context
Works fine with 4.5.0
auth0-python version
4.6.0
Python version
3.11.4
The text was updated successfully, but these errors were encountered: