密码保护 ATOM 源

发布于 2024-07-12 10:25:18 字数 157 浏览 9 评论 0原文

Twitter ATOM 提要需要您的登录名和密码(显然),IE7 对此提供了很好的支持(显然 IE7 无法处理带有登录名/密码的 RSS 提要)。 当您注册 feed 时,IE 会显示一个简单的登录提示。

如何在 ASP.NET 中实现类似的功能而无需访问服务器或 IIS?

The Twitter ATOM feed requires your login and password (obviously), which is nicely supported by IE7 (apparently IE7 can't handle RSS feeds with login/pw). IE displays a simple login prompt when you register the feed.

How do I implement something similar in ASP.NET without access to the server or IIS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各自安好 2024-07-19 10:25:18

您可以使用一些基本 ASP 手动发送标头来请求通用 http 身份验证。

(复制自:http://psacake.com/web/fl.asp

您可以如果您使用的是 asp.net,还可以在 web.config 中定义身份验证设置


<系统.web>
<认证模式=“基本”/>

You could send a header manually with some basic ASP to request generic http authentication.

( Copied from: http://psacake.com/web/fl.asp )

You could also define authentication settings in your web.config if you're using asp.net

<!-- Web.config file -->
<system.web>
<authentication mode="basic" />
</system.web>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文