I have error on function with python. Can someone help me what is going on?
TL;DR
User is experiencing an AttributeError when trying to access the 'bodyRaw' attribute of a 'Request' object in Python. Another user suggests checking Python examples for proper snake-case usage and mentions changing 'queryString' to 'query_string'. A solution is proposed to change 'bodyRaw' to 'body_raw' in the Python code.Good catch! It should be body_raw in Python
same for queryString -> query_string
@VincentGe I believe those came from docs. Let's double check all Python examples to use proper snake-case (underline)
Owh yeah, it work's, thank's @Meldiron
@Meldiron Fix
Recommended threads
- Function's Static IP
Is it possible to have static. IP Address instead of Dynamic IP for getting the IP Address whitelist
- How to use dart workspaces to deploy a f...
Hello, I'm developing a Flutter application and I would like to leverage dart pub workspaces to deploy a function with a dart runtime as advertised here : http...
- [SOLVED] Unable to push function from AP...
When trying to push functions from Gitlab CI (with an API KEY and using the CLI), i saw that i was unable to push functions. ``` $ appwrite client --endpoint $...