From ebd7398029f3b23be1a57f9c82a8580d2fd17cb3 Mon Sep 17 00:00:00 2001 From: Sathyanarayanan-Elangovan Date: Wed, 11 Jun 2025 15:17:59 +0530 Subject: [PATCH] fix: switch Gupshup API endpoint from HTTP to HTTPS to resolve connection timeout --- src/Gateways/GupshupGateway.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gateways/GupshupGateway.php b/src/Gateways/GupshupGateway.php index 6a0c133..4875557 100644 --- a/src/Gateways/GupshupGateway.php +++ b/src/Gateways/GupshupGateway.php @@ -9,7 +9,7 @@ class GupshupGateway implements SmsGatewayInterface { protected $gwvars = array(); - protected $url = 'http://enterprise.smsgupshup.com/GatewayAPI/rest?'; + protected $url = 'https://enterprise.smsgupshup.com/GatewayAPI/rest?'; protected $request = ''; public $status = false; public $response = '';