We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my code to get post from hashtag but it return zero result:
package main import ( "fmt" "github.com/Davincible/goinsta/v3" ) func main() { insta, err := goinsta.Import("./goinsta") if err != nil { panic(err) } tag := "golang" hashtag, err := insta.Searchbar.SearchHashtag(tag) if err != nil { panic(err) } fmt.Println(hashtag.NumResults) }
The text was updated successfully, but these errors were encountered:
Not exactly the same issue but the following snippet also doesn’t work correctly
if err := insta.Login(); err != nil { panic(err) } var following = insta.Account.Following("", goinsta.DefaultOrder) // unexpectedly returns 0 Users
Sorry, something went wrong.
Do hashtag.Tags[0].Next() before running fmt.Println(hashtag.NumResults)
hashtag.Tags[0].Next()
fmt.Println(hashtag.NumResults)
No branches or pull requests
my code to get post from hashtag but it return zero result:
The text was updated successfully, but these errors were encountered: