I ...Twitter bot set up that tweets out NFL scoring plays. It was working fine an hour ago, but now I get the following message when using this code:
token <- rtweet::create_token(
app = "nflscoringbot", # the name of the Twitter app
consumer_key = "...",
consumer_secret = "...",
access_token = "...",
access_secret = "..."
)
# Example: post a tweet via the API
rtweet::post_tweet(tweet_text, media = "bot/scoring_chart.png", token = token,
media_alt_text = "Scoring chart!")
Like I said, it worked fine just an hour ago but now it's stopped working. Any insights?
