diff --git a/docs/guide/apps/weibo/cli.md b/docs/guide/apps/weibo/cli.md index 82a1905..a41a9df 100644 --- a/docs/guide/apps/weibo/cli.md +++ b/docs/guide/apps/weibo/cli.md @@ -52,7 +52,7 @@ #### `--proxies` -代理服务器,最多 2 个参数,`http://`与`https://`。空格区分 2 个参数,例如:`http://x.x.x.x https://x.x.x.x`。如果你的代理不支持`出口HTTPS`,那么请使用`http://x.x.x.x http://x.x.x.x`。 +代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下如你的代理不支持`出口HTTPS`,https:// 应使用 http:// 方案)。 #### `--auto-cookie` diff --git a/f2/apps/douyin/cli.py b/f2/apps/douyin/cli.py index 7a8da55..a0e9855 100644 --- a/f2/apps/douyin/cli.py +++ b/f2/apps/douyin/cli.py @@ -354,7 +354,7 @@ def validate_proxies( type=str, nargs=2, help=_( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), callback=validate_proxies, ) diff --git a/f2/apps/douyin/help.py b/f2/apps/douyin/help.py index d6c56c5..8261aa8 100644 --- a/f2/apps/douyin/help.py +++ b/f2/apps/douyin/help.py @@ -78,7 +78,7 @@ def help() -> None: "-P --proxies", "[dark_cyan]str", _( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), ), ("-L --lyric", "[dark_cyan]Bool", _("是否保存视频歌词")), diff --git a/f2/apps/tiktok/cli.py b/f2/apps/tiktok/cli.py index 53cd362..4ec403e 100644 --- a/f2/apps/tiktok/cli.py +++ b/f2/apps/tiktok/cli.py @@ -333,7 +333,7 @@ def validate_proxies( type=str, nargs=2, help=_( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), callback=validate_proxies, ) diff --git a/f2/apps/tiktok/help.py b/f2/apps/tiktok/help.py index b9c55f3..3d232fd 100644 --- a/f2/apps/tiktok/help.py +++ b/f2/apps/tiktok/help.py @@ -83,7 +83,7 @@ def help() -> None: "-P --proxies", "[dark_cyan]str", _( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), ), ( diff --git a/f2/apps/twitter/cli.py b/f2/apps/twitter/cli.py index d113350..c6a2d99 100644 --- a/f2/apps/twitter/cli.py +++ b/f2/apps/twitter/cli.py @@ -268,7 +268,7 @@ def validate_proxies( type=str, nargs=2, help=_( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), callback=validate_proxies, ) diff --git a/f2/apps/twitter/help.py b/f2/apps/twitter/help.py index 72cc838..976dd9a 100644 --- a/f2/apps/twitter/help.py +++ b/f2/apps/twitter/help.py @@ -51,7 +51,7 @@ def help() -> None: "-P --proxies", "[dark_cyan]str", _( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), ), ("--update-config", "[dark_cyan]Flag", _("使用命令行选项更新配置文件")), diff --git a/f2/apps/weibo/cli.py b/f2/apps/weibo/cli.py index a1f7314..77903df 100644 --- a/f2/apps/weibo/cli.py +++ b/f2/apps/weibo/cli.py @@ -268,7 +268,7 @@ def validate_proxies( type=str, nargs=2, help=_( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), callback=validate_proxies, ) diff --git a/f2/apps/weibo/help.py b/f2/apps/weibo/help.py index 3c842c4..8e62eca 100644 --- a/f2/apps/weibo/help.py +++ b/f2/apps/weibo/help.py @@ -49,7 +49,7 @@ def help() -> None: "-P --proxies", "[dark_cyan]str", _( - "代理服务器,最多 2 个参数,http://与https://。空格区分 2 个参数 http://x.x.x.x https://x.x.x.x" + "代理服务器,空格区分 2 个参数 http://x.x.x.x:xxxx http://x.x.x.x:xxxx (某些情况下,https:// 应使用 http:// 方案)" ), ), ("--update-config", "[dark_cyan]Flag", _("使用命令行选项更新配置文件")),