分类 经验分享 下的文章
华为鸿蒙系统连接代理后无法上网问题的解决方案
转载请注明出处:小锋学长生活大爆炸[xfxuezhang.blog.csdn.net]
以Clash for Android为例。
情景描述
开了代理后,手机无法上网,甚至百度都打不开。关闭代理后,能正常上网。
问题分析
其实是被系统自动关后台活动了。因此只需将“电池优化”、“APP自启动”、“锁屏清理白名单”都设置一下就好了。
问题修复
这样就可以了:
Windows设置WiFi热点开机自启
1、管理员打开 Windows PowerShell 输入以下内容:set-executionpolicy remotesigned
2、打开资源管理器,并在地址栏输入:
%appdata%\Microsoft\Windows\Start Menu\Programs\Startup
3、新建 wifi.bat 文件输入以下内容:
powershell -executionpolicy remotesigned -file "%appdata%\Microsoft\Windows\Start Menu\Programs\pondsihotspot.ps1"
exit
````
4、打开资源管理器,并在地址栏输入:
%appdata%\Microsoft\Windows\Start Menu\Programs
5、新建 pondsihotspot.ps1 文件输入以下内容:
````
Add-Type -AssemblyName System.Runtime.WindowsRuntime
$asTaskGeneric = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and $_.GetParameters()[0].ParameterType.Name -eq 'IAsyncOperation`1' })[0]
Function Await($WinRtTask, $ResultType) {
$asTask = $asTaskGeneric.MakeGenericMethod($ResultType)
$netTask = $asTask.Invoke($null, @($WinRtTask))
$netTask.Wait(-1) | Out-Null
$netTask.Result
}
Function AwaitAction($WinRtAction) {
$asTask = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and !$_.IsGenericMethod })[0]
$netTask = $asTask.Invoke($null, @($WinRtAction))
$netTask.Wait(-1) | Out-Null
}
$connectionProfile = [Windows.Networking.Connectivity.NetworkInformation,Windows.Networking.Connectivity,ContentType=WindowsRuntime]::GetInternetConnectionProfile()
$tetheringManager = [Windows.Networking.NetworkOperators.NetworkOperatorTetheringManager,Windows.Networking.NetworkOperators,ContentType=WindowsRuntime]::CreateFromConnectionProfile($connectionProfile)
if ($tetheringManager.TetheringOperationalState -eq 1) {
"Hotspot is already On!"
}
else{
"Hotspot is off! Turning it on"
Await ($tetheringManager.StartTetheringAsync()) ([Windows.Networking.NetworkOperators.NetworkOperatorTetheringOperationResult])
}```
运行 wifi.bat,测试能否打开热点;最后重启电脑,看下是否可以自动打开移动热点。
mirai登陆失败反复验证码或提示登录存在安全风险的解决方法
对于没有服务器的同学,可以进入官网领取免费1个月的轻量云服务器:云产品免费试用;需要选购的进:轻量应用服务器专场;不清楚怎么操作的可以看教程:腾讯云产品免费试用教程
不断出现的无法登陆问题,可以关注官方论坛:无法登录的临时处理方案
{lamp/}
2023/03/12更新:
fix-protocol-version 于 v1.2.0 更新了 MACOS 协议
https://github.com/cssxsh/fix-protocol-version/releases/tag/v1.2.0
出现 code=45 / code=238 问题的可以尝试切换到 MACOS 协议
2023/3/9更新:
- AndroidMirai App不能用了,可以用这个Aoki App替代:Aoki: Mirai 一键登录处理器
- 下载这两个仓库中的jar文件,放到mirai的plugins文件夹下面:
https://github.com/KasukuSakura/mirai-login-solver-sakura/releases
https://github.com/cssxsh/fix-protocol-version/releases
然后继续使用下面提到的“app登录后将文件复制到mirai”的方法。 - 并且,很重要的一点,建议把协议设置为“ANDROID_PHONE”或“ANDROID_PAD”。
以上方法目前实测有效。
2023/2 更新:
根据友友的反馈,提示“版本过低”的,可以试试这个方法:mirai-login-solver-sakura
{lamp/}
QQ登录校验更新了,所以以前的方法可能都失效了。
可以尝试以下文章的“搭建mirai环境”部分:
https://blog.csdn.net/sxf1061700625/article/details/126654108
(以下截图未完整)
特别是,“手机上用MiraiAndroid登录QQ后,成功后导出cache目录和device.json到电脑的mirai中,并设置autologin信息”,这一步骤非常管用。我每次都是用这个方法。
文件路径在启动MiraiAndroid时候会提示你,:
目录结构跟电脑上的mirai一样,登录后在“bots/QQ号”下面。
然后回到电脑mirai,按路径替换进去:
在“config/Console/AutoLogin.yml”下添加一下运行该QQ的信息,这样启动就能自动登录了:
这时候再去运行mirai:
就很棒!!
---
这里有几个注意事项要特别说明一下,提高成功率的:
- 现在注册的QQ一般都开启了设备登录保护,需要把它“关掉”,进入方式:设置-账号安全:
- 关闭后,最好不要马上去mirai登录,这时候还是会报验证。放置几天,再去登录,成功率大大提高。这期间最好等保持QQ的登录状态。
API收集整理
免费IP定位
从小程序里抓的
https://apis.map.qq.com/ws/location/v1/ip?key=RPEBZ-J2ZWW-2CIRC-OO3Q2-HH7X2-7GBEJ
返回格式:
"status": 0,
"message": "Success",
"request_id": "xxxxxxxxx",
"result": {
"ip": "00.00.00.000",
"location": {
"lat": 00.00,
"lng": 00.00
},
"ad_info": {
"nation": "xxx",
"province": "xxx",
"city": "xxx",
"district": "xxx",
"adcode": 000
}
}
}