From 8b45e4e93dec0ba2b458260d9e4811005f03af79 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Wed, 6 Aug 2025 10:20:00 -0500 Subject: [PATCH] dont use twitter URL for SSL client example --- examples/WiFiSSLClient/WiFiSSLClient.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/WiFiSSLClient/WiFiSSLClient.ino b/examples/WiFiSSLClient/WiFiSSLClient.ino index 2e6e330..e953c94 100644 --- a/examples/WiFiSSLClient/WiFiSSLClient.ino +++ b/examples/WiFiSSLClient/WiFiSSLClient.ino @@ -24,8 +24,8 @@ int status = WL_IDLE_STATUS; // use the numeric IP instead of the name for the server: //IPAddress server(74,125,232,128); // numeric IP for Google (no DNS) -#define SERVER "cdn.syndication.twimg.com" -#define PATH "/widgets/followbutton/info.json?screen_names=adafruit" +#define SERVER "httpbin.org" +#define PATH "/get" // Initialize the SSL client library // with the IP address and port of the server