扩展 drupal 7 feed-aggregator 模块以通过编程方式修改 URL 并添加 feed 选项
我想使用 Drupal feed 聚合器从 Web 服务获取事件(提供 Atom、JSON 等对这些事件的访问)。但是,它不仅可以提供 API 密钥,还可以对请求进行签名来检索受保护的事件。
所以我想知道是否可以轻松地扩展聚合器模块(最好通过单独的模块,而不必修改聚合器模块的代码),以使用自定义函数处理使用的 URL(添加时间戳、签名等) .)。能够添加自定义选项字段(“API 密钥”、“秘密密钥”等)也很重要。
现在我正在使用一个完全自定义的模块,它不使用 cronjob 来检索事件,依赖于块缓存等 - 它的主要问题是它只是一个没有例如“查看更多”选项。
I'd like to use the Drupal feed aggregator to fetch events from a web service (providing Atom, JSON, etc. access to those events). However, it allows to retrieve protected events by providing not only an API key but also signing the request.
So I'd like to know if it's easily possible to extend the aggregator module (preferably through a separate module without having to modify the aggregator module's code) in a way to process the used URL with a custom function (to add timestamp, signature etc.). Being able to add custom option fields ("API key", "Secret key" etc) would be important, too.
Right now I'm using a completely custom module which does not use a cronjob to retrieve the events, relies on the block cache, etc - the main issue of it is that it's just a block without e.g. a "view more" option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会更成功地实现各种聚合器模块挂钩。
例如 hook_aggregator_fetch
以及该页面上列出的其他相关挂钩。
You may have more success implementing the various aggregator module hooks.
For example hook_aggregator_fetch
and the other related hooks listed on that page.