SMS metin mesajı göndermek için PHP cURL ile basit GET isteği

0 Cevap php

Ben php kodu içinde bir php oluşturulan mesaj göndermek gerekiyor hızlı web uygulaması oluşturma. cURL görünüşe iş için bir araçtır, ama çalışma almak için yeterince anlamakta zorluk yaşıyorum.

Ben uğraşıyorum API için dokümantasyonudur here. Özellikle ben belgelenen basit GET-tabanlı sms bildirim kullanmak istiyorsanız here. İkincisi kaynak GET API basitçe olduğunu belirtir:

http://sms2.cdyne.com/sms.svc/SimpleSMSsend?PhoneNumber={PHONENUMBER}&Message={MESSAGE}&LicenseKey={LICENSEKEY}

Ben bir tarayıcıya şu URL'yi yazın ve eğer gerçekten, ben beklenen sonuçları almak:

http://sms2.cdyne.com/sms.svc/SimpleSMSsend?PhoneNumber=15362364325&Message=mymessage&LicenseKey=2134234882347139482314987123487

Şimdi aynı php içinde etkileyecek oluşturmak çalışıyorum. İşte benim girişimi:

<html>
<body>
<?php
$num = '13634859126';
$message = 'some swanky test message';

$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, "http://sms2.cdyne.com/sms.svc/SimpleSMSsend?PhoneNumber=".urlencode($num)."&Message=".urlencode($message)."&LicenseKey=2345987342583745349872");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?>
</body>
</html>

Benim diğer PHP web sayfalarını sorunsuz çalışır, bu yüzden php biliyorum ve apache tüm doğru ayarlanır. Ben yukarıdaki sayfada benim tarayıcı işaret zaman ama, benim telefon üzerinde hiçbir mesaj alıyorum. Herkes yanlış ne yapıyorum bana gösterebilir misin?

Note: all numbers are faked... as you might have suspected.

0 Cevap