淘宝联盟新推出文本淘口令,参http://open.taobao.com/api.htm?docId=31728&docType=2&scopeId=13189
taobao.tbk.tpwd.mix.create( 淘宝客文本淘口令 )
官方描述:
提供淘客生成文本淘口令接口,淘客提交口令内容、口令文本、logo、url等参数,生成文本淘口令关键key如:自定义内容+自定义口令,后续进行文案包装组装用于传播
维易淘宝客接口估计该接口可以很好的防止微信封锁。因此对于在微信上推广的客户来说,还是很有意义。
不过,也不排除微信针对性的推出检测技术。
因为是新接口,我们也需要继续跟进了解,后续再优化接口。
调用示例:
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new TbkTpwdMixCreateRequest;
$req->setExt("{}");
$req->setLogo("https://uland.taobao.com/");
$req->setUrl("https://uland.taobao.com/");
$req->setText("长度大于5个字符");
$req->setUserId("123");
$req->setPassword("自定义口令");
$resp = $c->execute($req);
返回值:
{
"tbk_tpwd_mix_create_response":{
"data":{
"status":"1",
"password":"自定义标题自定义口令"
}
}
}