Hi Team!
So I'm working on a stellar anchor, and I got some data issue. In the stellar developers docs on the anchor architecture, its stated to have a /receive endpoint, where the Bridge server sends any new transaction it finds on the horizon server. Now, I had already implement everything, I assumed the data sent to the /receive endpoint is of application/json as I didn't see any notes on that in the docs.
Testing my setup with live transactions, I noticed most time my golang service handling the receive endpoints breaks, as it can't parse the data sent.
Sample of non json sent: asset_code=XX&asset_issuer=XXX
I'd like to know which is really sent, application/json or application/x-www-form-urlencoded?