分类 默认分类 下的文章
tvbox在线源配置
tvbox安装上不能直接看的,需要配置资源源地址,可自己搭也可以用别个维护的
安装好app后,点开设置,在第二行看到配置地址,把在线配置地址填写进去就可以了。
tvbox接口
接口收集:https://xduo.app/box/api/
序号 接口 描述 维护者
1 https://yydsys.top/duo 多多家庭接口 站长大聪明
2 https://raw.liucn.cc/box/m.json 老刘备 liucn
3 http://我不是.肥猫.love:63/接口禁止贩卖 持续维护 肥猫
4 https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json 终南干货群 南风
5 http://饭太硬.top/tv 神器推送 饭太硬
6 http://home.jundie.top:81/top98.json 俊佬接口 于俊
7 https://gh.t4tv.hz.cz/newtang.bmp 持续维护 唐三
8 https://tvbox.cainisi.cf 持续维护 菜妮丝
9 https://raw.iqiq.io/lm317379829/PyramidStore/pyramid/py.json 持续维护 霜辉月明
10 https://raw.iqiq.io/kebedd69/TVbox-interface/main/甜蜜.json 持续维护 dlgt7
11 https://dxawi.github.io/0/0.json 持续维护 dxawi/github️
12 http://101.34.67.237/config/3 持续维护 小雅JS
13 https://raw.iqiq.io/FongMi/CatVodSpider/main/json/config.json 持续维护 蜂蜜
14 https://download.kstore.space/download/2863/01.txt 持续维护 潇洒
15 https://download.kstore.space/download/2883/m3u8/dsj/guochan/mp1/1.m3u8 蚂蚁论坛 D大
16 https://agit.ai/n/b/raw/branch/a/b/c.json abc线路 未知主人
17 http://xhww.fun:63/小米/DEMO.json 持续维护 小米线路
18 http://itvbox.cc/tvbox/云星日记/1.m3u8 云星家庭版接口 云星日记 edge更新后浏览网页时出现圆角边框怎么办
点击浏览器登录头像旁边的三个点,打开菜单,点击设置,并选择设置菜单中的【外观】,或者直接复制链接打开
edge://settings/appearance将默认选中的【试用 Microsoft Edge 的全新外观】取消选中,重启浏览器解决
版本 116.0.1938.54 (正式版本) (64 位)
github要求账户开启二次验证2FA,不然不给用怎么办
https://github.com/settings/security
选择:Two-factor methods -> Authenticator app
edge浏览器扩展市场搜索,Authenticator
安装扩展:Authenticator: 2FA Client
然后在 Authenticator app 的配置页面,点击扩展,扫描二维码进行账户的添加
然后把生成的密码填写到 Verify the code from the app 的输入框,保存,然后就会提示下载保存一个恢复码文件,这个文件需要自己下载保存到自己的电脑或者其它你自己能找到的地方,长期保存,以免后续可找回账户使用
现在就开启了二次验证了。
下次登录如果需要二次验证,用那个扩展扫码获取密码即可。
nginx配置实现非www跳www域名,移动端跳m移动端域名的方法
注意:nginx配置不支持 if ( && ) 以及 if 嵌套写法
if ($host = 'xxxx.com' ) {
rewrite ^ https://www.xxxx.com$uri permanent;
}
set $flag "0";
if ($host = 'www.xxxx.com') {
set $flag "${flag}1";
}
if ( $http_user_agent ~* "(Android|webOS|iPhone|iPad|BlackBerry)" ){
set $flag "${flag}1";
}
if ($flag = "011"){
rewrite ^/(.*)$ https://m.xxxx.com$uri permanent;
}