【ChatGPT】用VPN都“Sorry, you have been blocked"的解决方法

跟随祖国伟大的步伐,香港人也不能正常使用ChatGPT。不少追逐新科技的爱好者,包括小U自己都会用各种方法来使用ChatGPT,使用VPN无疑是体验「原装正版」ChatGPT的最简单的方法。但是爲什麽用VPN都不能登入?以及有何解决方法?

阅读全文: 【ChatGPT】用VPN都“Sorry, you have been blocked”的解决方法

摘要节点

用VPN都无法使用ChatGPT的两个简单解决方法切换到冷门的地点

Surfshark是小U最常用来使用ChatGPT的VPN。ChatGPT还未咁火爆的时候,Surfshark很少被Blocked,但是当越来越多人一尝ChatGPT时候,就越来越容易出现“Sorry, you have been blocked“的情况。

於是我就手动地选择伺服器,特别拣一D我未听过的地方名去连线,发现被BLOCKED的机会低好多。例如我会拣这个”布法罗“,在美国边度的呢?唔紧要,只要可以顺利连线:

自动连线经常挑选热门地方,选择冷门的连线目的地就比较顺利

Surfshark在美国在东西岸、中部很多洲份都有伺服器,所以IP地址比较多,详细评测请见:美国3大VPN推荐2022:东西岸有别、小心选错!

.rh-scorebox{display:block;margin-bottom:35px}.rh-scorebox__right{margin-top:25px}.rh-scorebox__pros{margin-bottom:35px}.rh-scorebox__cont{position:relative}.rh-scorebox__score{width:80px;border-radius:50%;background:#fff;height:80px;position:absolute;top:-58px;right:20px;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-flex;display:-ms-flexbox;display:flex}.rh-scorebox__number{font-size:32px;font-weight:700}.rh-scorebox__wrap{box-shadow:0 20px 20px 0 rgba(69,96,127,.08)}.rh-scorebox__label{font-size:13px;line-height:18px;margin-bottom:10px}.rh-scorebox__label i{margin-right:5px;vertical-align:baseline}.rh-scorebox__cont{padding:18px}.rh-scorebox__title{font-size:21px;font-weight:700;line-height:28px;margin-bottom:15px}.rh-scorebox__button{padding:12px;text-align:center;font-weight:700;font-size:18px;line-height:22px;margin-bottom:15px;display:block}.rh-scorebox__criterias-title{font-size:16px;font-weight:700;line-height:24px;margin-bottom:15px}.rh-scorebox__list{margin:0!important;padding:0!important;list-style:none}.rh-scorebox__list-item{font-size:15px;line-height:18px;margin-bottom:15px!important;list-style:none!important;position:relative;padding-right:22px;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.rh-scorebox__list-item i{margin-right:10px;vertical-align:middle}.rh-scorebox__inner{font-size:16px;line-height:24px;margin-bottom:25px}.rh-scorebox__image img{max-height:240px;object-fit:contain}.imagefullcover img{object-fit:cover!important;margin:0;width:100%}@media only screen and (min-width:480px){.rh-scorebox{display:-webkit-flex;display:-ms-flexbox;display:flex}.rh-scorebox__left,.rh-scorebox__right{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;width:50%}.rh-scorebox__right{margin-left:20px;margin-top:0}.rh-scorebox__cons{margin-bottom:25px}}9.2性价比最高VPN推荐Surfshark VPN $17蚊起👉 查看最新优惠优点不足

不要连线美国VPN伺服器

可能由於OpenAI系美国公司,好多人默认会连线美国伺服器去接入ChatGPT。但是其实ChatGPT只限制了少数国家的使用,全球绝大多数国家都能正常使用。所以没必要去美国伺服器人逼人。

小U推荐大家考虑这个经济发达、人口少、科技投入唔太差的国家,小U从未试过连线这里被ChatGPT认爲不在服务区域,这个国家就是:

澳洲 – Australia

无论你使用Surfshark还是其他VPN,都可以尝试连线澳洲,解决“Sorry, you have been blocked”的问题。可能Surfshark也是在澳洲伺服器资源不少,所以用起来没问题。

如果你还未有VPN,欢迎你参考:

最适合香港人的VPN:5个推荐和12个不推荐的贵价、平价和免费VPN

不使用VPN的方法

有没有不用VPN直接可以用到ChatGPT的方法?

有!

以下是我用Telegram连线ChatGPT,在TG中直接与ChatGPT AI对话的方法:

用Python写好的代码一run即用,不到20行就能串接Telegram Bot和最新版本的ChatGPT。如果你需要小U解释使用方法,请留言,我另开文章详述。

import osimport openaifrom aiogram import Bot, Dispatcher, executor, typesbot = Bot(token = "YOUR-TGBOT-TOKEN")dp = Dispatcher(bot)openai.api_key = "YOUR-OPENAI-API-TOKEN"systemPrompt = "You are a friendly assistant. You prefer to provide precise and short answer. You are ChatGPT of version 5.0, a large language model trained by OpenAI. "prompt = [{"role": "system",           "content": systemPrompt}]@dp.message_handler(commands = ['start', 'help'])async def welcome(message: types.Message):  await message.reply('Hello! Im GPT chat bot. Ask me something')@dp.message_handler(commands = ['clear'])async def welcome(message: types.Message):  await message.reply('prompt reset and history clear')  prompt = [{"role": "system",             "content": systemPrompt}]@dp.message_handler()async def gpt(message: types.Message):  prompt.append({"role": "user", "content": message.text})  response = openai.ChatCompletion.create(      model="gpt-3.5-turbo",      messages=prompt)  await message.reply(response.choices[0].message.content)  prompt.append({"role": "assistant", "content": response.choices[0].message.content})if __name__ == "__main__":  executor.start_polling(dp)

Leave a Reply

Your email address will not be published. Required fields are marked *