0

プロジェクトに qwikcilver API を統合しようとしています。彼らは認証に oauth1.0 を使用しています。oauth1.0 にrequests-oauthlib python lib を使用しています。
これが認証用の私のコードです。

# Using OAuth1Session
oauth = OAuth1Session(client_key, client_secret=client_secret)
fetch_response = oauth.fetch_request_token(request_token_url)
{
    "oauth_token": "Z6eEdO8MOmk394WozF5oKyuAv855l4Mlqo7hhlSLik",
    "oauth_token_secret": "Kd75W4OQfb2oJTV0vzGzeXftVAwgMnEK9MumzYcM"
}
resource_owner_key = fetch_response.get('oauth_token')
resource_owner_secret = fetch_response.get('oauth_token_secret')

私のクエリは次のとおりです
。qwikcilver にはユーザー名とパスワードがあります。ユーザー名とパスワードをコードで送信しようとしましたが、うまくいきませんでした。

requests-oauthlibリクエスト関数でユーザー名とパスワードを渡す方法は?

4

2 に答える 2