Created
October 18, 2018 15:18
-
-
Save pandanote-info/e9160fa5336b21c16ac4c713c4933311 to your computer and use it in GitHub Desktop.
Twitter APIからtokenを取得するためのPython3のスクリプト。Consumer API key及びConsumer API secret keyはJSONファイルから読み込む。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
from twitter import * | |
import json | |
consumer_key_file = "consumer_key_file.json" | |
CONSUMER_KEY = "" | |
CONSUMER_SECRET="" | |
with open(consumer_key_file) as infile: | |
text = infile.read() | |
keypair = json.loads(text) | |
#consumer key, consumer secret key from https://apps.twitter.com/ | |
CONSUMER_KEY = keypair["consumer_key"] | |
CONSUMER_SECRET= keypair["consumer_key_secret"] | |
MY_TWITTER_CREDS = "pandanote_publisher_credentials.txt" | |
if not os.path.exists(MY_TWITTER_CREDS): | |
oauth_dance("Pandanote publisher", CONSUMER_KEY, CONSUMER_SECRET, MY_TWITTER_CREDS) | |
oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS) | |
twitter = Twitter(auth=OAuth(oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment