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
Describe the bug I can nont log to instagram account to use code. Not found cookie/cookie_file found.
To Reproduce Code to reproduce the behavior: [IG] not found cookie/cookie_file >> login as default ClientError checkpoint_challenge_required (Code: 400, Response: {"message": "challenge_required", "challenge": {"url": "https://i.instagram.com/challenge/6033869826/KIJQve2H7q/", "api_path": "/challenge/6033869826/KIJQve2H7q/", "hide_webview_header": true, "lock": true, "logout": false, "native_flow": true}, "status": "fail", "error_type": "checkpoint_challenge_required"})
Process finished with exit code 9
#code here from instapy_cli import client username = "anyname" password = "anypassword" cookie_file = 'ANYNAME_ig.json' with client(username, password, cookie_file=cookie_file, write_cookie_file=True) as cli: # get string cookies cookies = cli.get_cookie() print(type(cookies)) # == str print(cookies) # do stuffs with cli ig = cli.api() me = ig.current_user() print(me)
The text was updated successfully, but these errors were encountered:
Hey @MindaugasVaitkus2,
We did a quick check and this issue looks very darn similar to
This could be a coincidence, but if any of these issues solves your problem then I did a good job 😄
If not, the maintainers will get to this issue shortly.
Cheers, Your Friendly Neighborhood ProBot
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I can nont log to instagram account to use code. Not found cookie/cookie_file found.
To Reproduce
Code to reproduce the behavior:
[IG] not found cookie/cookie_file >> login as default
ClientError checkpoint_challenge_required (Code: 400, Response: {"message": "challenge_required", "challenge": {"url": "https://i.instagram.com/challenge/6033869826/KIJQve2H7q/", "api_path": "/challenge/6033869826/KIJQve2H7q/", "hide_webview_header": true, "lock": true, "logout": false, "native_flow": true}, "status": "fail", "error_type": "checkpoint_challenge_required"})
Process finished with exit code 9
The text was updated successfully, but these errors were encountered: