未验证 提交 215ec727 编写于 作者: A ax4 提交者: GitHub

fix: fix the broken URLs links to /bot-qr-code.png (#1994)

given expired links to the picture file
上级 7db0ca9f
...@@ -359,7 +359,7 @@ await bot.say(contact) ...@@ -359,7 +359,7 @@ await bot.say(contact)
// 3. send Image to bot itself from remote url // 3. send Image to bot itself from remote url
import { FileBox } from 'wechaty' import { FileBox } from 'wechaty'
const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
await bot.say(fileBox) await bot.say(fileBox)
// 4. send Image to bot itself from local file // 4. send Image to bot itself from local file
...@@ -483,7 +483,7 @@ const msg = await room.say('Hello world!') // only supported by puppet-padplus ...@@ -483,7 +483,7 @@ const msg = await room.say('Hello world!') // only supported by puppet-padplus
// 2. Send media file inside Room // 2. Send media file inside Room
import { FileBox } from 'wechaty' import { FileBox } from 'wechaty'
const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
const fileBox2 = FileBox.fromLocal('/tmp/text.txt') const fileBox2 = FileBox.fromLocal('/tmp/text.txt')
await room.say(fileBox1) await room.say(fileBox1)
const msg1 = await room.say(fileBox1) // only supported by puppet-padplus const msg1 = await room.say(fileBox1) // only supported by puppet-padplus
...@@ -1019,7 +1019,7 @@ const msg = await contact.say('welcome to wechaty!') // only supported by puppet ...@@ -1019,7 +1019,7 @@ const msg = await contact.say('welcome to wechaty!') // only supported by puppet
// 2. send media file to contact // 2. send media file to contact
import { FileBox } from 'wechaty' import { FileBox } from 'wechaty'
const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
const fileBox2 = FileBox.fromFile('/tmp/text.txt') const fileBox2 = FileBox.fromFile('/tmp/text.txt')
await contact.say(fileBox1) await contact.say(fileBox1)
const msg1 = await contact.say(fileBox1) // only supported by puppet-padplus const msg1 = await contact.say(fileBox1) // only supported by puppet-padplus
...@@ -1309,7 +1309,7 @@ bot.on('login', (user: ContactSelf) => { ...@@ -1309,7 +1309,7 @@ bot.on('login', (user: ContactSelf) => {
import { FileBox } from 'wechaty' import { FileBox } from 'wechaty'
bot.on('login', (user: ContactSelf) => { bot.on('login', (user: ContactSelf) => {
console.log(`user ${user} login`) console.log(`user ${user} login`)
const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
await user.avatar(fileBox) await user.avatar(fileBox)
console.log(`Change bot avatar successfully!`) console.log(`Change bot avatar successfully!`)
}) })
...@@ -1720,7 +1720,7 @@ bot ...@@ -1720,7 +1720,7 @@ bot
// 1. send Image // 1. send Image
if (/^ding$/i.test(m.text())) { if (/^ding$/i.test(m.text())) {
const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
await msg.say(fileBox) await msg.say(fileBox)
const message = await msg.say(fileBox) // only supported by puppet-padplus const message = await msg.say(fileBox) // only supported by puppet-padplus
} }
......
...@@ -73,7 +73,7 @@ export class ContactSelf extends Contact { ...@@ -73,7 +73,7 @@ export class ContactSelf extends Contact {
* import { FileBox } from 'wechaty' * import { FileBox } from 'wechaty'
* bot.on('login', (user: ContactSelf) => { * bot.on('login', (user: ContactSelf) => {
* console.log(`user ${user} login`) * console.log(`user ${user} login`)
* const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') * const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
* await user.avatar(fileBox) * await user.avatar(fileBox)
* console.log(`Change bot avatar successfully!`) * console.log(`Change bot avatar successfully!`)
* }) * })
......
...@@ -347,7 +347,7 @@ export class Contact extends Accessory implements Sayable { ...@@ -347,7 +347,7 @@ export class Contact extends Accessory implements Sayable {
* // 2. send media file to contact * // 2. send media file to contact
* *
* import { FileBox } from 'wechaty' * import { FileBox } from 'wechaty'
* const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') * const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
* const fileBox2 = FileBox.fromFile('/tmp/text.txt') * const fileBox2 = FileBox.fromFile('/tmp/text.txt')
* await contact.say(fileBox1) * await contact.say(fileBox1)
* const msg1 = await contact.say(fileBox1) // only supported by puppet-padplus * const msg1 = await contact.say(fileBox1) // only supported by puppet-padplus
......
...@@ -445,7 +445,7 @@ export class Message extends Accessory implements Sayable { ...@@ -445,7 +445,7 @@ export class Message extends Accessory implements Sayable {
* // 1. send Image * // 1. send Image
* *
* if (/^ding$/i.test(m.text())) { * if (/^ding$/i.test(m.text())) {
* const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') * const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
* await msg.say(fileBox) * await msg.say(fileBox)
* const message = await msg.say(fileBox) // only supported by puppet-padplus * const message = await msg.say(fileBox) // only supported by puppet-padplus
* } * }
......
...@@ -409,7 +409,7 @@ export class Room extends Accessory implements Sayable { ...@@ -409,7 +409,7 @@ export class Room extends Accessory implements Sayable {
* *
* // 2. Send media file inside Room * // 2. Send media file inside Room
* import { FileBox } from 'wechaty' * import { FileBox } from 'wechaty'
* const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') * const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
* const fileBox2 = FileBox.fromLocal('/tmp/text.txt') * const fileBox2 = FileBox.fromLocal('/tmp/text.txt')
* await room.say(fileBox1) * await room.say(fileBox1)
* const msg1 = await room.say(fileBox1) // only supported by puppet-padplus * const msg1 = await room.say(fileBox1) // only supported by puppet-padplus
......
...@@ -1106,7 +1106,7 @@ export class Wechaty extends EventEmitter implements Sayable { ...@@ -1106,7 +1106,7 @@ export class Wechaty extends EventEmitter implements Sayable {
* *
* // 3. send Image to bot itself from remote url * // 3. send Image to bot itself from remote url
* import { FileBox } from 'wechaty' * import { FileBox } from 'wechaty'
* const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') * const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png')
* await bot.say(fileBox) * await bot.say(fileBox)
* *
* // 4. send Image to bot itself from local file * // 4. send Image to bot itself from local file
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册