Skip to content

Commit

Permalink
Merge pull request #161 from MerleLiuKun/fix-oauth1
Browse files Browse the repository at this point in the history
fix(oauth): 🐛 fix redirect uri for oauth1.0
  • Loading branch information
MerleLiuKun authored Mar 18, 2024
2 parents 2b6ae3b + 5e5fb6e commit d42185e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytwitter/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _get_oauth1_session(
session = OAuth1Session(
client_id=self.consumer_key,
client_secret=self.consumer_secret,
callback_uri=callback_uri,
redirect_uri=callback_uri,
**kwargs,
)
return session
Expand Down

0 comments on commit d42185e

Please sign in to comment.