《vbot微信机器人操作联系人的API(2)好友API》要点:
本文介绍了vbot微信机器人操作联系人的API(2)好友API,希望对您有用。如果有疑问,可以联系我们。
相关主题:web微信和微信机器人
【主要功能】
设置好友的备注、设置好友置顶、添加群员为好友、同意通过好友。
【API详解】
(1)设置备注:
$friends->setRemarkName($username, $remarkName);
(2)设置置顶:
$isStick 为 true 为置顶,否则相反:
$friends->setStick($username, $isStick = true);
(3)添加好友:
仅能根据 username 添加好友,换言之,只能添加群成员为好友,因为你的好友不可能再添加,那么只有添加微信群中还没成为你好友的群员,根据他们的userName添加。
$friends->add($username, $content = null);
参数$content 为添加好友申请说明
(4)同意添加好友:
$message 为 message handler 接收到的 friend_request 消息,直接扔进来此处即可
$friends->approve($message);
这个方法可以实现暗号加好友,比如:
// 同意添加好友 if ( $message['type'] == 'request_friend' ) { if ( $message['info']['Content'] === 'yourpwd' ) { $friends->approve ( $message ); } }
$message['info']['Content']就是对方加你时的留言内容,可以要求对方用暗号。只要符合就可以通过。 以上是好友API。下一节是微信群API