پارامترهای ورودی
|
|
|
---|---|---|
نام کاربری
|
Char
|
Uname
|
پسورد
|
Char
|
Pass
|
کد بالک پیامک
|
Char
|
id
|
deleteperiod
|
|
OP
|
لغو ارسال دوره ای
فایل مورد بحث : deleteperiodsmsResponse
خطا : The username or password is incorrect مربوط به اشتباه بودن نام کاربری یا رمز عبور می باشد.
مشاهده نمونه کدها
[php]
<?php $url = "https://ippanel.com/services.jspd"; $param = array ( ‘uname’=>”,
‘pass’=>”,
‘id’=>”,
‘op’=>’deleteperiod’
);
$handler = curl_init($url);
curl_setopt($handler, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($handler, CURLOPT_POSTFIELDS, $param);
curl_setopt($handler, CURLOPT_RETURNTRANSFER, true);
$response2 = curl_exec($handler);
$response2 = json_decode($response2);
$res_code = $response2[0];
$res_data = $response2[1];
echo $res_data;
?>
[/php]
آیا این مقاله برای شما مفید بود؟
بله|نه|