I am building a small app where i need to filter a list for authenticated user. I created a SQL view on supabase (since expected data is from multiple tables), and then used that view for API call where i am attaching the JWT token in flutterflow. (By creating a variable in the API call setting and setting that variable to Id token (jwt), during the call)
I have already configured the supabase integration with URL and API-keys. However i get this error when the request is called.
{ "message": "No API key found in request",
"hint": "No apikey
request header or url param was found."}
Other part of the app where i use Supabase Query is working perfectly.
P.S. I am new to flutterflow and first time use backend service like Supabase.