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
$this->cookies = new CookieJar(); $qrSign = $this->makeQrCodeImage($loginQRImage); $ptQrToken = Utils::hash33($qrSign); while (true) { $status = $this->verifyQrCodeStatus($ptQrToken); 我试了下,我把那个$ptQrToken保存,然后用js定时器来请求,每秒判断一次,可会报错
The text was updated successfully, but these errors were encountered:
不验证登录其他操作根本没法进行,我不知道你这么玩有什么意义
Sorry, something went wrong.
报错可以用try 来进行处理。
你可以通过异步来防止阻塞。开两个进程, 一个负责主逻辑,提示用户扫码,或者发送二维码到邮件,或者发送带二维码的短信之类都行,一个负责生成二维码然后阻塞获取认证信息
No branches or pull requests
$this->cookies = new CookieJar();
$qrSign = $this->makeQrCodeImage($loginQRImage);
$ptQrToken = Utils::hash33($qrSign);
while (true) {
$status = $this->verifyQrCodeStatus($ptQrToken);
我试了下,我把那个$ptQrToken保存,然后用js定时器来请求,每秒判断一次,可会报错
The text was updated successfully, but these errors were encountered: