Where can I go in Bubble to see the actual JSON received from my API post? I sent one to initialize it, but since then, I don’t know were to go to see any future POST requests?
You can see some of the request and response in the log
The log is blank/empty… What should I do to see it?
If you use an API call it will show up in the log. For workflows, but not front end data stuff. (Like a GET request for data in a RG won’t show up, but backend stuff will.)
Is your POST running as a workflow?
If you are using API Connector from Bubble, go to plugins → Api Connector → Reinitialize Call, then you can see API responses log.
I’m sending an http Post to the app workflow endpoint:
{something like that above}
not using the API Connector… The Post is initiated from an external app. It just sends the data over as JSON… I still should be able to see it somewhere though
UPDATE: Found it. I created an email with all of the request results… I received the email. Then I went into the logs and saw that the email processed… So at least I can see what came through
CONCLUSION:
It looks like when you send http POST to a bubble.io app, you should process the data either by creating a thing or by sending a notification of some sort with all the data expected to be received… That way, the log can capture it, and you can see what actually came through.