2

以下のコードを使用して自分の Reddit アカウントにログインできませんでした。

エラーメッセージ:

raise HTTPError(http_error_msg, response=self) HTTPError: 403 Client Error: Forbidden

このエラーを回避する方法はありますか?

class PrawTest(webapp2.RequestHandler):
  def get(self):
    self.response.headers['Content-Type'] = 'text/plain'
    self.response.out.write('Yo, imma redit bot!')

    get_login= ConfigParser.ConfigParser()
    get_login.read("logins.ini")

    r = praw.Reddit(user_agent='Captain Reddit!')

    r.login(get_login.get("login1", "username"),get_login.get("login1","password"))


app = webapp2.WSGIApplication([('/hype_shit_up', PrawTest)], debug=True)
4

1 に答える 1