Hi,
How are you?
I want to make a twitter bot.
I have a list of screen name’s user and I want to make each them a question with a tweet with a mention something like it.
users = [user1,user2,userN]
for user in users:
tweet = makeTweet(user)
update.status(tweet)
where tweet looks like = “Hi @user1, how are you?”
I have different questions(how are you, which is your favourite team?) and I tweet in different times (wait between 10 minutes and 15 minutes to make a new tweet).
But twitter makes my twitter app with the following: “Restricted from performing write actions”
How can I resolve it?
I am making that bot for my thesis.
I have a web page and the users know that I am going to ask them some question.
I don’t follow them.
Thank you!