我可以自定义Wechaty UrlLink标题吗

时间:2019-05-06 12:59:49

标签: node.js

Wechaty是一个用于微信个人帐户的Bot SDK,可以帮助您创建6行JavaScript的机器人,并具有Linux,Windows,Darwin(OSX / Mac)和Docker等跨平台支持。参见:https://github.com/chatie/wechaty

我想使用微信发送URL链接,我可以对此进行自定义吗?

1 个答案:

答案 0 :(得分:0)

是的,可以。

相关文档:https://docs.chatie.io/v/zh/faq#url-message

微信中的示例代码:https://github.com/Chatie/wechaty/blob/master/src/user/message.ts#L471

const linkPayload = new UrlLink ({
         description : 'WeChat Bot SDK for Individual Account, Powered by TypeScript, Docker, and Love',
         thumbnailUrl: 'https://avatars0.githubusercontent.com/u/25162437?s=200&v=4',
         title       : 'Welcome to Wechaty',
         url         : 'https://github.com/chatie/wechaty',
       })
       await msg.say(linkPayload)

您可以更改自己喜欢的标题。