Replies: 1 comment 1 reply
|
Can you use https://docs.expo.dev/debugging/tools/#react-native-debugger to inspect the network traffic of the function call and see if there's more detail available there? Anything in the Functions logs in your supabase dashboard? https://supabase.com/docs/guides/functions/debugging OOC, any reason you're routing your file upload through a function rather than uploading directly to storage from your client? |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I have a problem here running edge functions on my React Native app with Expo. Things are working correctly, when I'm serving this function and running POST function in PostMan. The error I'm getting from running this: [FunctionsHttpError: Edge Function returned a non-2xx status code]
supabaseClient.ts:
Edge function (upload-user-file):
Client code:
All reactions