我正在使用以下代码,我正在点击外部网址,网址会返回一个令牌。当我通过putty的curl命令点击URL时,我收到了令牌。我面临的问题是因为我正在使用https而不是http,或者我需要在php.ini中包含一些用于加载模块的指令。请帮忙。
$email="abc.xyz@email.com";
$data="?email=$email";
$url = 'https://abc.xyz.com/api/encrypt'.$data;
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$myfile = curl_exec($ch);
echo $myfile;
我还有其他方法可以实现我的目标吗?