自定义 RSS :在 xml 中列出标签
对于我正在编写的 iPhone 应用程序,我希望能够列出我的 drupal 网站上使用的标签。 我想要一个可以从 iphone 调用的 url,以接收当前 drupal 站点上使用的标签的 xml 列表。
我可以用 Drupal 视图来做吗?知道如何做到这一点。 我的想法是,我将从 iPhone 回调到另一个自定义 RSS 提要,以列出绑定到该标签的文章。
...
For an iphone app I'm writing, I'd like to be able to list the tags used on my drupal site.
I'd like to have an url i could call from iphone to receive an xml list of tags used on the drupal site currently.
May I do it with Drupal views ? any idea how to do that.
The idea is that i'll cal back from iphone to another custom rss feed to list the article binded to that tag.
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用视图来做到这一点。
创建一个视图,显示标签目录中的分类术语。创建一个“提要”显示,然后就可以了。
Yes, you can do this with views.
Create a view that displays taxonomy terms in your tag directory. Create a 'Feed' Display, and there you go.
第一 - RSS 并不真正适合于此。因为您正在寻找标签的表示,而不是文章。
使用服务模块是比仅查看视图更好的解决方案,因为您获得了身份验证,并且一旦设置连接,您就可以使用 drupal 站点执行更多操作。
将 json 模块与服务结合使用,我们能够比我们第一次尝试使用视图输出 xml 时更好地完成这项工作。
1st - RSS isn't really appropriate for this. Since you are looking for a representation of tags, not articles.
Using the services module is a better solution than just views since you get authentication, and once the connection is setup you can do more with the drupal site.
Using the json module with services we were able to make this work much better than when we first tried to output xml using views.