Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

response status 429 Too Many Requests: {"code":88,"message":"Rate limit exceeded."} #156

Open
ghost opened this issue Nov 30, 2023 · 0 comments

Comments

@ghost
Copy link

ghost commented Nov 30, 2023

package twitter_scraper

import (
        "log"
	twitterscraper "github.com/n0madic/twitter-scraper"
)

var Scraper *twitterscraper.Scraper

func InitTwitterScraper() error {
	Scraper = twitterscraper.New()
	err := Scraper.Login("username_xxxx", "password_xxx")
	if err != nil {
		log.Println("InitTwitterScraper err:", err)
		return err
	}
	return nil
}

It always return err when I call 'Login'. I have tried to change the account and ip, but the rate limit is still returned

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants