cURL request in Laravel

前端 未结 5 1294
梦如初夏
梦如初夏 2021-01-30 23:44

I am struggling to make this cURL request in Laravel

curl -d \'{\"key1\":\"value1\", \"key2\":\"value2\"}\' -H \"Content-Type: application/json\"   -X GET http:/         


        
5条回答
  •  梦谈多话
    2021-01-31 00:17

    Use this as reference . I have successfully made curl GET request with this code

    public function sendSms($mobile)
    {
      $message ='Your message';
      $url = 'www.your-domain.com/api.php?to='.$mobile.'&text='.$message;
    
         $ch = curl_init();
         curl_setopt($ch, CURLOPT_URL, $url);
         curl_setopt($ch, CURLOPT_POST, 0);
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    
         $response = curl_exec ($ch);
         $err = curl_error($ch);  //if you need
         curl_close ($ch);
         return $response;
    }
    

提交回复
热议问题