前提・実現したいこと
twitterで"てすとついーと"とつぶやかせたい
発生している問題・エラーメッセージ
-bash: syntax error near unexpected token `"てすとついーと"'
該当のソースコード
Python
yahoo@koee:$ #ツイートテスト用のサンプルコード$ import tweepy
yahoo@koee:
-bash: import: command not found
yahoo@koee:$ # KEYの指定$ CONSUMER_KEY = ""
yahoo@koee:
-bash: CONSUMER_KEY: command not found
yahoo@koee:$ CONSUMER_SECRET = "*"$ ACCESS_TOKEN = ""
-bash: CONSUMER_SECRET: command not found
yahoo@koee:
-bash: ACCESS_TOKEN: command not found
yahoo@koee:$ ACCESS_TOKEN_SECRET = "*"$ # tweepyの設定
-bash: ACCESS_TOKEN_SECRET: command not found
yahoo@koee:
yahoo@koee:$ auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)$ api = tweepy.API(auth)
-bash: syntax error near unexpected token (' yahoo@koee:~$ auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET) -bash: syntax error near unexpected token
ACCESS_TOKEN,'
yahoo@koee:
-bash: syntax error near unexpected token (' yahoo@koee:~$ #ツイートの実行 yahoo@koee:~$ api.update_status("てすとついーと") -bash: syntax error near unexpected token
"てすとついーと"'
やったこと
tweepyのインストール
APIKeyの取得
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/07 04:04