chunqiu

Results 2 comments of chunqiu

通过打开开发者选项的指针位置然后解锁可以发现解锁成功需要在上滑的结束位置使滑动曲线变为红色,由于小米屏幕没有压感,所以猜测是需要变速滑动才能解锁成功。 ![wechatimg96](https://user-images.githubusercontent.com/7577575/53930708-4dd83880-40cd-11e9-9cb3-4d0c975051ce.png) 但是通过auto.js模拟的上滑是匀速滑动,所以会失败。 通过查找发现 http://dq.tieba.com/p/5851853570 中的方法可行,他通过下拉通知栏,然后点击时间实现实现与上滑相同的功能。 ``` js //曲线解锁 miui锁屏滑动不能唤出密码输入 通过下拉通知栏点击时间进入密码解锁 device.wakeUp(); //下拉状态栏 swipe(500, 30, 500, 1000, 300); sleep(400); //点击时间 click(100, 120); ```

hi, I encountered this error message during the use of [socket.io-client-cpp](https://github.com/socketio/socket.io-client-cpp). The problem I encountered was that the ssl was not compiled, the https used when setting the url was...