想要用python做一个discord的机器人,不停地在discord上透过webhook帮我发关注的人最最新消息。
目前跑短时间内不会有问题,但长时间跑竟会被微博拒绝。错误讯息403。
> Traceback (most recent call last):
> File "main.py", line 27, in <module>
> result = c.get_weibo_package("statuses/home_timeline") # fetch posts
> File "/app/weiboclient.py", line 75, in get_weibo_package
> result = self.client.get(suffix=api + ".json")
> File "/app/.heroku/python/lib/python3.7/site-packages/weibopy/weibo.py", line 80, in get
> return self._handler_response(response)
> File "/app/.heroku/python/lib/python3.7/site-packages/weibopy/weibo.py", line 62, in _handler_response
> data=data
> weibopy.exceptions.WeiboRequestError: Weibo API request error: status code: 403 url:https://api.weibo.com/2/statuses/home_timeline.json -> method:GET: data=None
> Process exited with status 1
网站按进去後出现(之前的錯誤已修正,現在是出現這個)
{"error":"source paramter(appkey) is missing","error_code":10006,"request":"/2/statuses/home_timeline.json"}
根据错误代码说明,10006 是指 Source paramter (appkey) is missing。缺少source (appkey) 参数。可是我看不出哪里有问题啊。我是用post的方式得到access token的。
我是每200秒抓一次,用account/rate_limit_status确认过已经确定不是IP问题,请问到底是哪里出问题?
附上在github上的code
谢谢