drted
1
I’m working with a Web_API component. My endpoint is a NodeJS function on firebase that I created. Right now, it does a whole lot of nothing:
exports.MyFirstHTTPSListener = functions.https.onRequest((req,res) => {
res.status(200).json({message:‘it worked’});
});
The function works as expected in a Chrome Browser on Windows 10
It also works on Android Live Test
It does not work on Web Live Test or preview.
blocks are pretty straightfoward
Is this a know or expected behavior? project Link here: Thunkable
muneer
2
It seems to be a recurring issue
Dealing with the same issue now
There are quite a few APIs that only work on a mobile device, not when previewed in a browser.
1 Like
drted
6