subzeroid / instagrapi

🔥 The fastest and powerful Python library for Instagram Private API 2024
https://hikerapi.com/p/bkXQlaVe
MIT License
4.38k stars 685 forks source link

Error login #1104

Open MrTob opened 1 year ago

MrTob commented 1 year ago

Discussed in https://github.com/adw0rd/instagrapi/discussions/96

Originally posted by **NicolasSDuoc** January 29, 2021 Hi, I'm trying to log in but i get this error: requests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://i.instagram.com/api/v1/accounts/login/ The account doesn't have 2 factor auth. im using this code to test: ```python from instagrapi import Client from instagrapi.types import Location, StoryMention, StoryLocation, StoryLink, StoryHashtag cl = Client() cl.login('username', 'password') media_path = cl.video_download( cl.media_pk_from_url('https://www.instagram.com/p/CGgDsi7JQdS/') ) adw0rd = cl.user_info_by_username('adw0rd') loc = cl.location_complete(Location(name='Test', lat=42.0, lng=42.0)) ht = cl.hashtag_info('dhbastards') cl.video_upload_to_story( media_path, "Credits @adw0rd", mentions=[StoryMention(user=adw0rd, x=0.49892962, y=0.703125, width=0.8333333333333334, height=0.125)], locations=[StoryLocation(location=loc, x=0.33, y=0.22, width=0.4, height=0.7)], links=[StoryLink(webUri='https://github.com/adw0rd/instagrapi')], hashtags=[StoryHashtag(hashtag=ht, x=0.23, y=0.32, width=0.5, height=0.22)], ) ```
JBdev05 commented 1 year ago

same here