我正在尝试使用 PSHB 协议来通知我的 Google 警报。我正在使用此处找到的代码。但是,我不清楚如何实现回调(或端点)。
有人可以提供一个简单的示例来说明我如何访问已发布到我的端点的数据吗?
谷歌代码的(稍作修改)片段如下:
<?php
// simple example for the PHP pubsubhubbub Subscriber
// as defined at http://code.google.com/p/pubsubhubbub/
// written by Josh Fraser | joshfraser.com | josh@eventvue.com
// Released under Apache License 2.0
include("subscriber.php");
$hub_url = "http://pubsubhubbub.appspot.com";
$callback_url = "http://www.example.com/mycallback.php"; // <- how to implement this ?
[[编辑]]
我在下面添加了一些伪代码,以帮助进一步澄清问题......
// Implementation of mycallback.php
<?php
$pubsub_post_vars = $_POST[WHAT_NAME_AM_I_LOOKING_FOR]; //what's the name of the POST var?
// How do I get to the 'good stuff?
$feed_id = $pubsub_post_vars[SOME_VARIABLE]
$feed_title = $pubsub_post_vars[ANOTHER_VARIABLE]
$contents = $pubsub_post_vars[YET_ANOTHER_VARIABLE]
$author = $pubsub_post_vars[YET_ANOTHER_VARIABLE_1]
$perma_link = $pubsub_post_vars[YET_ANOTHER_VARIABLE_2]
$pub_date = $pubsub_post_vars[YET_ANOTHER_VARIABLE_3]
?>
我意识到这种方法(上面)可能是完全错误的,因为我怀疑它是一个 RSS/ATOM 文档被发布。但是,像上面这样的一些骨架代码应该足以让我开始,这样我就可以提取提要 ID、标题和发布的内容等内容。