luoxuebinfei / luo_bot

基于 NoneBot2 和 go-cqhttp 的自用机器人
MIT License
2 stars 2 forks source link

关于soutubot #4

Open ShellyMon opened 1 year ago

ShellyMon commented 1 year ago

81b8e1f6b4e8171407d58230e6621e72 soutubot的cf盾关了,想到前几天就有点难受了

ShellyMon commented 1 year ago

现在正常使用也使用不了了,唉~,联系不上作者

luoxuebinfei commented 1 year ago

sad😥,但应该不是我干的,我这才几个人用啊😭

ShellyMon commented 1 year ago

没有怪你的意思,这次cf盾撤销之后,确实卡了不少

luoxuebinfei commented 1 year ago

cf盾没了就被挤爆了,但我觉得再怎么使用爬虫搜图也不应该这样,我怀疑是被ddos了🤔

ShellyMon commented 1 year ago

可能是吧,实际上我觉得soutubot没有别的替代品啊

ShellyMon commented 1 year ago

我基本上一天调用个十次左右的接口

luoxuebinfei commented 1 year ago

tg群内部的使用好像已经恢复了

ShellyMon commented 1 year ago

那是什么,

luoxuebinfei commented 1 year ago

就是作者开发这网站前的一个搜图群组,现在好像是私密了进不去新人,这里面有群主的机器人可以使用Soutubot

ShellyMon commented 1 year ago

Soutubot机器人我加了,但是群组我没加

ShellyMon commented 1 year ago

怎么加群?

luoxuebinfei commented 1 year ago

私密了吧,看不到链接和邀请选项

ShellyMon commented 1 year ago

你会做推特的接口吗?我想获取推特上的图片

luoxuebinfei commented 1 year ago

获取推特图片?github上不是有很多这种项目吗?

ShellyMon commented 1 year ago

居然会这样,你推荐一个,我去抄

luoxuebinfei commented 1 year ago

https://github.com/KurtBestor/Hitomi-Downloader https://github.com/mengzonefire/twitter-media-downloader https://github.com/search?q=twitter%20download&type=repositories —————————————————————— 其实还有个问题是马一龙收购后限制了原本的api,不然可以直接使用api操作

ShellyMon commented 1 year ago

这两个我都看了一下,需要登陆推特获取cookie才能获取到资源,感觉还行,挺理想的,看看具体咋操作的

ShellyMon commented 1 year ago

但是我发现推特的图不清楚啊,可恶

ShellyMon commented 1 year ago

推特没有查看原图这种类似的操作么

luoxuebinfei commented 1 year ago

https://www.ganbey.com/download-twitter-images-3760

ShellyMon commented 1 year ago

好好好

ShellyMon commented 1 year ago

我现在也不想自己维护了,还是用你的吧233

ShellyMon commented 1 year ago

hello,作者,假设我安装了gocqhttp。那我还需要按照下面得指令进行安装吗 nb plugin install nonebot-plugin-apscheduler nb plugin install nonebot-plugin-gocqhttp nb plugin install nonebot-plugin-reboot

ShellyMon commented 1 year ago

可以不可以加个联系方式?

luoxuebinfei commented 1 year ago

hello,作者,假设我安装了gocqhttp。那我还需要按照下面得指令进行安装吗 nb plugin install nonebot-plugin-apscheduler nb plugin install nonebot-plugin-gocqhttp nb plugin install nonebot-plugin-reboot

除了第一个其他都是可选的,已经装了gocqhttp就不用再用插件了,reboot插件只是用来在QQ发送机器人重启命令的,linux安装好像有问题。

ShellyMon commented 1 year ago

hello,作者,假设我安装了gocqhttp。那我还需要按照下面得指令进行安装吗 nb plugin install nonebot-plugin-apscheduler nb plugin install nonebot-plugin-gocqhttp nb plugin install nonebot-plugin-reboot

除了第一个其他都是可选的,已经装了gocqhttp就不用再用插件了,reboot插件只是用来在QQ发送机器人重启命令的,linux安装好像有问题。

我把go-cqhttp的监听端口更换成了6700会报错,你这个连接方式是http还是ws?

ShellyMon commented 1 year ago

image

ShellyMon commented 1 year ago

image 看起来是http,但是报404的错误

ShellyMon commented 1 year ago

![Uploading image.png…]() go-cqhttp端的报错

luoxuebinfei commented 1 year ago

hello,作者,假设我安装了gocqhttp。那我还需要按照下面得指令进行安装吗 nb plugin install nonebot-plugin-apscheduler nb plugin install nonebot-plugin-gocqhttp nb plugin install nonebot-plugin-reboot

除了第一个其他都是可选的,已经装了gocqhttp就不用再用插件了,reboot插件只是用来在QQ发送机器人重启命令的,linux安装好像有问题。

我把go-cqhttp的监听端口更换成了6700会报错,你这个连接方式是http还是ws?

gocqhttpconfig.yml文件中的连接方式按照下面的格式改,端口修改为你要的端口

# 连接服务列表
servers:
  # 添加方式,同一连接方式可添加多个,具体配置说明请查看文档
  #- http: # http 通信
  #- ws:   # 正向 Websocket
  #- ws-reverse: # 反向 Websocket
  #- pprof: #性能分析服务器
  # 反向WS设置
  - ws-reverse:
      # 反向WS Universal 地址
      # 注意 设置了此项地址后下面两项将会被忽略
      universal: ws://127.0.0.1:8080/onebot/v11/ws
      # 反向WS API 地址
      api: ws://your_websocket_api.server
      # 反向WS Event 地址
      event: ws://your_websocket_event.server
      # 重连间隔 单位毫秒
      reconnect-interval: 3000
      middlewares:
        <<: *default # 引用默认中间件

机器人的.env配置中的PORT=8080 # 监听端口也要修改

luoxuebinfei commented 1 year ago

image

端口被占用了

ShellyMon commented 1 year ago

知道你是反向ws就好解决了

ShellyMon commented 1 year ago

问题解决了,试试功能如何

ShellyMon commented 1 year ago

用起来不是很明白233,有点报错

luoxuebinfei commented 1 year ago

报错信息是啥

ShellyMon commented 1 year ago

image

ShellyMon commented 1 year ago

image

ShellyMon commented 1 year ago

百度的搜图好像挂了

ShellyMon commented 1 year ago

image

image 这个是超时?续图

luoxuebinfei commented 1 year ago

是不是没设置代理,或者设置代理错误了

luoxuebinfei commented 1 year ago

https://github.com/luoxuebinfei/luo_bot#插件配置

# 插件 YetAnotherPicSearch 的配置
PROXY=""   # 代理地址
# saucenao APIKEY,必填,否则无法使用 saucenao 搜图
SAUCENAO_API_KEY=""
ShellyMon commented 1 year ago

image

ShellyMon commented 1 year ago

image 代理地址是这样设置的吗

ShellyMon commented 1 year ago

XianbaoPush这个插件是打广告的吗

luoxuebinfei commented 1 year ago

image 代理地址是这样设置的吗

格式没错,代理软件有开启运行局域网访问吗?

luoxuebinfei commented 1 year ago

XianbaoPush这个插件是打广告的吗

一个推送线报优惠的插件,关掉既可

# 插件 XianbaoPush 的配置
XIANBAO_OPEN=False  # 是否开启推送
XIANBAO_GROUP_ID=[] # 要推送的群,多个群以英文逗号分割
ShellyMon commented 1 year ago

image 代理地址是这样设置的吗

格式没错,代理软件有开启运行局域网访问吗?

这个不用担心,我很多软件依靠代理运行

ShellyMon commented 1 year ago

插件ssr2好像有问题

luoxuebinfei commented 1 year ago

什么报错?

ShellyMon commented 1 year ago

image

这张截图