How do I send text to website and getting approval back? Boron

A Boron sends a text string to a website and the website sends ‘Approved’ or ‘Denied’ back.

What’s the best way to do this on the boron side, the httpclient library?

The HTTP client is not recommended because it does not support https and would not be secure.

The best option is to use a webhook. The device can subscribe the response to the webhook to indicate success or failure. It’s recommended that if possible the approved or denied be sent in the body of the response and to always return a 200 OK response instead of returning a denied response at the HTTP error code level.

1 Like

I don’t think I asked the right question. I’ll make a new post.