dpgua04022 2018-10-31 09:17
浏览 571

“糟糕,发生错误”Instagram登录错误

For the last five months, my Instagram account won't open. My other accounts have been working fine. Whenever I try to refresh my Instagram account, it just doesn't refresh. When I try to login on a browser, it takes me to a blank page and says "Oops an error occurred".

enter image description here

  • 写回答

1条回答 默认 最新

  • doulei1965 2019-06-08 08:32
    关注

    It's an authentication problem, account need to validate but you can't give verification code in SMS or email, request verification code in SMS or email

    <?php
    set_time_limit(0);
    date_default_timezone_set('UTC');
    
    require __DIR__.'/../vendor/autoload.php';
    
    use InstagramAPI\Exception\ChallengeRequiredException;
    use InstagramAPI\Instagram;
    use InstagramAPI\Response\LoginResponse;
    
    //Enter these options
    $username            = 'username'; // your username
    $password            = 'password'; //your password
    $verification_method = 1; //0 = SMS, 1 = Email
    
    //Leave these
    $user_id      = '';
    $challenge_id = '';
    
    class ExtendedInstagram extends Instagram {
        public function changeUser( $username, $password ) {
            $this->_setUser( $username, $password );
        }
    }
    
    $instagram = new ExtendedInstagram();
    
        $loginResponse = $instagram->login( $username, $password );
        $user_id       = $instagram->account_id;
    
        if ( $loginResponse !== null && $loginResponse->isTwoFactorRequired() ) {
            echo '2FA not supported in this example';
            exit;
        }
    
        if ( $loginResponse instanceof LoginResponse || $loginResponse === null ) {
            echo "Not a challenge required exception...
    ";
        }
    
        echo 'Logged in!';
    ?>
    

    Instagram's private API Library

    评论

报告相同问题?

悬赏问题

  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch