IlhanOriginal post
Rank 2: Process
Hey hey! I have a function and I want to add a query parameter to it, but that gives me the following error, as if the query parameters are a route!
The requested route was not found. Please refer to the API docs and try again.
I'm using appwrite's auto generated URL and just adding a ?teams=3052 at the end of it
This is source code for the function I am using:
https://github.com/unickorn/footcal/blob/main/functions/calendar/main.go
Summary
Developers are encountering issues when trying to add query parameters to a function, receiving a route error message. The problem might be due to not formatting the query parameters correctly. Check the function code to ensure proper usage of query parameters.