具有帐户验证功能的受密码保护的 RSS 提要
我们正在创建一个包含用户生成的 RSS 提要的网站,我们帐户中的其他用户可以查看这些提要,并由源用户进行验证。是否有适用于 php 的 RSS 包具有密码保护功能,可以轻松绑定到用户数据库?
We're doing a site with user generated RSS feeds which can be viewed by other users who we accounts and are verified by the source user. Is there an RSS package for php around that has password protection available that's easy to tie into a user database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果 RSS 文件名为 rss.php,那么您可以在生成 XML 之前检查 php 用户是否已通过身份验证!
if the RSS file name is rss.php then you can check in the php before generating XML if the user is authenticated or not !
可以使用 HTTP 身份验证来保护 RSS 提要。您可以使用以下 URL 访问 rss:
您可以通过以下方法之一允许访问该文件:
.htaccess
通过 PHP 使用 http 身份验证
RSS feeds can be protected using HTTP authentication. where you can use the following URL to access rss:
you can allow acccess to the file by one of these methods:
.htaccess
using http authentication with PHP
您在数据库上为所有用户创建唯一的密钥。
您的 RSS 链接:
您将键值与用户配对。
You, on the database, create a unique key for all users.
Your RSS Link:
You pair the key value with the user.