Hello, I was trying to build an simple CMS system using bubble as my front end and Google Apps Script as my backend but it seems there’s a bug with the Bubble API Connector that is not allowing me to make it work. I can’t make the POST method work properly for me (GET is working fine), even though my Apps Script code is right (I’ve tested it with postman).
First what’s working:
As you can see in the next photos the GET method is working as expected (my code simply returns a mockup json).
What’s no working
I tried many variatations of the POST call but they all end up giving me the following error:
This is my api call on bubble:
(I tried using different headers such as Content-Type: application/json and all but it made no diference)
Just to make sure that the problem was not with my code I copied and pasted the same function on both GET and POST. For those familiar with Google Apps Script, here’s my code:
And here’s the same call working just fine with Postman: (as I said I tried using and not using some headers but it didn’t make much diference).
Can anyone help me with this? Is there something I should be doing differently?
Thanks.