0

任意の 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か?

ありがとう、

4

2 に答える 2

1

WebRequestを見てください。これにより、ほとんどのことが可能になりますが、行ごとではありません。

また、curlをダウンロードして、アプリケーションから呼び出すこともできます(ただし、WebRequestのオプションがある場合はお勧めしません... hehe)

于 2012-10-08T12:55:04.967 に答える
1

数秒のグーグル検索の後、この結果が得られます。を使用した例を示しますSystem.Net.WebRequest

また、MSDN では、投稿データを送信する方法の例を提供しています。

于 2012-10-08T12:57:08.960 に答える