コード例 #1
0
ファイル: reddit.py プロジェクト: yakovkeselman/praw
 def _prepare_untrusted_prawcore(self, requestor):
     authenticator = UntrustedAuthenticator(requestor,
                                            self.config.client_id,
                                            self.config.redirect_uri)
     read_only_authorizer = DeviceIDAuthorizer(authenticator)
     self._read_only_core = session(read_only_authorizer)
     self._prepare_common_authorizer(authenticator)
コード例 #2
0
ファイル: reddit.py プロジェクト: amandaoneal/praw
 def _prepare_untrusted_prawcore(self, requestor):
     authenticator = UntrustedAuthenticator(requestor,
                                            self.config.client_id,
                                            self.config.redirect_uri)
     read_only_authorizer = DeviceIDAuthorizer(authenticator)
     self._read_only_core = session(read_only_authorizer)
     if self.config.refresh_token:
         authorizer = Authorizer(authenticator, self.config.refresh_token)
         self._core = self._authorized_core = session(authorizer)
     else:
         self._core = self._read_only_core