@gwky55
Hi,
Example in MicroPython:

... def setup(): global wlan, http_req M5.begin() wlan = network.WLAN(network.STA_IF) if wlan.isconnected(): print('Connected') http_req = requests2.get('https://test/test.php?val1=aaa&val2=bbb', headers={'Content-Type': 'application/json'}) print(http_req.status_code)

And UI Flow2
http GET.png