Skip to content

What should be the callback when using GitHub Actions? #2142

Closed Answered by leonardo-cordeiro
arnonrdp asked this question in Questions
Discussion options

You must be logged in to vote

Try this:

from tweepy import Client


def twitter_connect(tweet_list):
    client = Client(
        consumer_key=getenv('API_KEY'),
        consumer_secret=getenv('API_KEY_SECRET'),
        access_token=getenv('ACCESS_TOKEN'),
        access_token_secret=getenv('ACCESS_TOKEN_SECRET')
    )

    prepare_tweet(tweet_list, client)

Replies: 2 comments 16 replies

Comment options

You must be logged in to vote
14 replies
@Harmon758
Comment options

@arnonrdp
Comment options

@Harmon758
Comment options

@arnonrdp
Comment options

@Harmon758
Comment options

Comment options

You must be logged in to vote
2 replies
@arnonrdp
Comment options

@Harmon758
Comment options

Answer selected by arnonrdp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Question This is a question
3 participants