本文简要介绍了Discord使用代理的方法。

首先点击Discord的快捷方式,目标后面添加参数--a=--proxy-server=http://127.0.0.1:1081。然后打开文件位置,创建一个命名为Update.exe.config的文件,然后填写下列内容。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
  </configSections>
  <system.net>
    <!--Configure fiddler local proxy-->
    <defaultProxy>
      <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:1081" usesystemdefault="false" />
    </defaultProxy>
  </system.net>
</configuration>

上文中的http://127.0.0.1:1081请自行替换为自己的代理地址。

Last modification:May 21, 2020
如果您觉得我的文章有用,给颗糖糖吧~