任意の Web サイトの上部に配置できる携帯電話番号のオプトイン/オプトアウト API を開発しているため、人々は自分の携帯電話番号への SMS を受信するように登録できます。
私は基本的にPHPウェブサイトUSING間でデータを投稿する以下のスクリプトを持っていますが、Curl
これはうまく機能しています:
<?php
$url = "http://myserverurl.com/optin.php";
$postdata['customer_id'] = "1";
$postdata['mobilenumber'] = $_POST['mobilenumber'];
$useragent= "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" ;
$ch = curl_init();
//set some cookie details up (depending on the site)
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt");
curl_setopt($ch, CURLOPT_USERAGENT, $useragent); //set our user agent
curl_setopt($ch, CURLOPT_POST, 1); //set how many paramaters
curl_setopt($ch, CURLOPT_URL,$url); //set the url we want to use
curl_setopt($ch, CURLOPT_POSTFIELDS,$postdata); //set data to post
$result= curl_exec ($ch); //execute and get the results
curl_close ($ch);
//print $result; //display the reuslt
?>
ウェブサイトが にある場合、このアプローチをどのように適用しますASP.net
か? に似たものはありCurl
ますASP.net
か?
ありがとう、