Hi, I’m using Notecarrier Pi with Notecard Cellular. I’m trying to send a web get request to a custom AWS public http endpoint. I’m able to get expected json response using manual curl as well as copying this link into web browser. However, when I set up the route in Notehub and get it this way, I always receive {‘result’: 503, ‘body’: {‘err’: ‘hub request error: response from web service does not appear to be JSON {not-json}’}}. AWS also doesn’t observe any get requests. I also tried setting up another public api route, which I was able to web get with Notehub and receive results as expected. Any ideas why the custom endpoint is not working? Is there a way for us to monitor the raw http request sent by Notehub?
Hi @vickylry and welcome to the Blues community!
Would it be possible to share the endpoint you are using here (or DM me if you can’t or don’t want to make it public)? Either that or share a screenshot of your route in Notehub (with any private info redacted?
Thanks,
Rob
Hi @RobLauer, thank you for your response! I can’t figure out how to DM you, so I attached our route in Notehub. We are able to talk to the server and receive expected response in binary format then decode to json if we set content to “plain/text”. However, if we set the content to “application/json”, the server doesn’t see any requests.
req = {"req": "web.get"}
req["route"] = "GetDetection"
req["name"] = "/ACCCCC"
req["content"] = "plain/text"
rsp = card.Transaction(req)
# rsp["payload"] contains the base64-encoded plain text
encoded_payload = rsp["payload"]
# Decode the base64 string
decoded_payload = base64.b64decode(encoded_payload).decode('utf-8')
# Parse the decoded string as JSON
json_data = json.loads(decoded_payload)
# Now json_data is a Python dictionary containing the JSON data.
print(json.dumps(json_data, indent=2))
Hi @vickylry,
Can you try copying/pasting the returned JSON (from a curl request or browser) into a JSON verifier to triple check that it’s properly formatted: https://jsonformatter.curiousconcept.com/
I’m wondering if there is some minor issue with the JSON formatting that you are missing but Notehub is picking up on.
Thanks,
Rob
Hi @RobLauer, I tried copying the returned JSON from browser to this website, and it shows that it is valid. Here is a sample response:
{"match":false}
If I first accept the response content as plain/text, store the server response in cache, then web.get it from cache with response content set as application/json, it works.