我正在使用托管在开发结构上的本地应用程序测试 OAuth。
我想将特定主机名绑定到我的本地应用程序,通常在 IISExpress 上我会在 ApplicaiontHosts.config 中编辑以下元素
<site name="BasicChat" id="15">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\xxx.yyy_VAIO\Downloads\Samples-master\Samples-master\BasicChat" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:44914:localhost" />
</bindings>
</site>
当我在 DevFabric 上进行测试时,什么是等效的?如何将调用别名为 localhost?