VPN/Proxy erkannt
Es scheint, dass Sie einen VPN- oder Proxy-Dienst verwenden. Bitte beachten Sie, dass die Nutzung eines solchen Dienstes die Funktionalität dieser Webseite einschränken kann.
-
I ran into this same issue and from what I can tell so far only the status works with direct cloud url
-
I am new to exploring the IoT and have recently purchased two Shelly Plug US devices and have registered via the cloud app and gotten my device ID and authentication key. Following the Cloud API instructions I am able to get my device listed as well as the device status however I am unable to programmatically turn the device ON or OFF. The following (edited) snippets show what works/does not work
std::string sShellyServer = "https://shelly-59-eu.shelly.cloud";
http_client client(uri::encode_uri(utility::conversions::to_string_t(sShellyServer)));
"/interface/device/list" with my auth_key WORKS
"/device/status" with my device ID and auth_key WORKS
"/device/relay/control ?channel=0&turn=on" with my device ID and auth_key DOES NOT WORK
Any recommendations/suggestions?