Hello, I am having issues querying my app proxy from my storefront App Theme Extension. Every time I query my app proxy URL I received a 500 error and HTML code that says “There was an error in the third-party application.” I have confirmed that my App proxy is not receiving the request because it is producing no console logging. This is my app proxy configuration:
Subpath prefix: apps
Subpath: prapp
Proxy URL: <Tunnel name>/get
App Proxy endpoint: /get/stores
Request URL: [https://<Store](https://<Store) name>.myshopify.com/apps/prapp/stores
This is my app extension code:
const fetchOptions = {
method: "GET",
headers: {
"Content-Type": "application/json",
},
};
return fetch("/apps/prapp/stores", fetchOptions);
I set up and ran the Product Reviews app extension sample project, and I got it to work. I am trying to do the same thing with my own app and Im not sure what I am missing. Is anyone able to provide any insight into this?