做用户触达时,我踩过最亏的坑是:一批几万条的营销短信发出去,后台一算,近一半是空号、停机号,钱花了、转化率还低。后来在发送前加了一道"手机号状态检测",先把无效号剔掉,不仅成本降了,有效送达和转化反而上去了。
这类检测的本质是直连运营商权威渠道,按手机号返回它当前的状态。下面用 C# 演示怎么接入。
一、接口功能:直连运营商,精准识别状态
空号检测接口(也称手机号状态检测接口)根据输入的手机号,快速返回其当前状态,主要分为以下几类:空号、实号、停机、沉默号、风险号等。除此之外,接口还会返回归属地(省份、城市)、运营商、区号、邮政编码等辅助信息,便于进一步分析。
二、实战演示:检测手机号 13112313213 的状态
下面通过 C# 调用该接口。host 为 API 调用地址(申请后获取,此处为示意),appcode 换成你自己的授权码。
接口地址:https://market.aliyun.com/detail/cmapi00067360
//using System.IO;
//using System.Text;
//using System.Net;
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String host = "https://market.aliyun.com/detail/cmapi00067360";
private const String path = "/phone_invalid";
private const String method = "GET";
private const String appcode = "你自己的AppCode";
static void Main(string[] args)
{
String querys = "phone=13112313213";
String bodys = "";
String url = host + path;
HttpWebRequest httpRequest = null;
HttpWebResponse httpResponse = null;
if (0 < querys.Length)
{
url = url + "?" + querys;
}
if (host.Contains("https://"))
{
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
}
else
{
httpRequest = (HttpWebRequest)WebRequest.Create(url);
}
httpRequest.Method = method;
httpRequest.Headers.Add("Authorization", "APPCODE " + appcode);
if (0 < bodys.Length)
{
byte[] data = Encoding.UTF8.GetBytes(bodys);
using (Stream stream = httpRequest.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
}
try
{
httpResponse = (HttpWebResponse)httpRequest.GetResponse();
}
catch (WebException ex)
{
httpResponse = (HttpWebResponse)ex.Response;
}
Console.WriteLine(httpResponse.StatusCode);
Console.WriteLine(httpResponse.Method);
Console.WriteLine(httpResponse.Headers);
Stream st = httpResponse.GetResponseStream();
StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
Console.WriteLine(reader.ReadToEnd());
Console.WriteLine("\\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
return true;
}
三、返回字段解析
接口返回手机号状态及归属地、运营商、区号、邮编等辅助字段,便于在业务侧做进一步分层处理(例如把"风险号"单独标记、把"沉默号"降低触达频次)。
四、能用在哪

接入这道检测后,最划算的不是"查得准",而是把发送预算从无效号上挪回来
网硕互联帮助中心


评论前必须登录!
注册