0
2factorからotpサービスを購入し、サンプルAPIを取得しました。 以下のサンプルAPI。 このotpは、顧客登録処理中に生成されます。私は助けを得ることを望む。事前に感謝します。この目標を達成するためにobserverを使用することができますMagento 2とotpサービスを統合する必要があります
<?php
$YourAPIKey='<YourAPI>';
$OTP='<OTPValue>';
$SentTo='<User10DigitNumber>';
### DO NOT Change anything below this line
$agent= 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)';
$url = "https://2factor.in/API/V1/$YourAPIKey/SMS/$SentTo/$OTP";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
echo curl_exec($ch);
curl_close($ch);
?>
ありがとうございます。私は今それを試してみます。 –