コード例 #1
0
 def __init__(self,
              app=None,
              base_url=None,
              consumer_key=None,
              consumer_secret=None,
              **kwargs):
     RauthServiceMixin.__init__(self, app=app, base_url=base_url)
     OAuth1Service.__init__(self,
                            consumer_key=consumer_key,
                            consumer_secret=consumer_secret,
                            **kwargs)
コード例 #2
0
ファイル: flask_rauth.py プロジェクト: underdogio/flask-rauth
 def __init__(self, app=None, base_url=None, consumer_key=None, consumer_secret=None, **kwargs):
     RauthServiceMixin.__init__(self, app=app, base_url=base_url)
     OAuth1Service.__init__(self, consumer_key=consumer_key, consumer_secret=consumer_secret, **kwargs)