Revert "Fix SetSearchLive, SetSearchPhotos and SetSearchVideos"

This reverts commit b6887fca9c.
This commit is contained in:
Alexander Sheiko 2020-12-23 19:24:08 +02:00
parent b6887fca9c
commit 1f25820556
3 changed files with 18 additions and 32 deletions

View file

@ -65,23 +65,13 @@ func main() {
The search ends if we have 50 tweets.
### Search tweet in realtime
```golang
scraper.SearchLive(true)
```
See [Rules and filtering](https://developer.twitter.com/en/docs/tweets/rules-and-filtering/overview/standard-operators) for build standard queries.
#### Search tweet in realtime
```golang
scraper.SetSearchLive(true)
```
#### Filter search
```golang
scraper.SetSearchPhotos(true)
```
or
```golang
scraper.SetSearchVideos(true)
```
### Get profile
```golang