skip to Main Content

Is there any possibility in making a twitter bot without using the dev api?

I would need a script / bot that can post and auto respond to dms without the twitter dev api is there any way i can do that?

Thanks in advance!

3

Answers


  1. No, this is not possible without the Twitter API.

    Login or Signup to reply.
  2. Yes it very possible you can use selenium in python to give the web inte

    Login or Signup to reply.
  3. import snscrape.modules.twitter as sntwitter
    # import pandas as pd
    
    query = "nft"
    tweets = []
    limit = 10
    
    
    for tweet in sntwitter.TwitterSearchScraper(query).get_items():
        
        if len(tweets) == limit:
            break
        else:
            tweets.append([tweet.url])
            
    print(tweets)
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search