You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require_oauth.acquire cannot be used to protect large POSTs, where the data will be streamed, because the usage of _req.data on line 73 fills memory. Replacing _req.data with a simple None seems to allow the correct result to be computed, but damages the downstream computation.
The text was updated successfully, but these errors were encountered:
authlib/authlib/integrations/flask_oauth2/resource_protector.py
Line 73 in 169c7dc
require_oauth.acquire
cannot be used to protect large POSTs, where the data will be streamed, because the usage of_req.data
on line 73 fills memory. Replacing_req.data
with a simpleNone
seems to allow the correct result to be computed, but damages the downstream computation.The text was updated successfully, but these errors were encountered: