檢測域名是否在微信被封,可批量檢測

很多小朋友在做一些公衆號頁面的時候,不知不覺,鏈接就被微信封了,今天寫個檢測教程,代碼簡單便捷

方法1:
<?php
$url = "檢測鏈接";
$name = "登錄賬戶";
$pwd = "登錄密碼";
$status = 0;//0爲不保存  1位儲存記錄
file_get_contents('https://www.lmcjl.com/wechat/api/wxff?name='.$name.'&pwd='.$pwd.'&url='.urlencode($url).'&status='.$status);
?>

其他用法(可get可post):

只需把參數拼接鏈接https://www.lmcjl.com/wechat/api/wxff
通過get或post即可
最終鏈接:https://www.lmcjl.com/wechat/api/wxff?name=賬戶&pwd=密碼&url=鏈接&status=狀態

來源接口:https://www.lmcjl.com/index/api/wxff.html?menu_id=64

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章