Usage
- Normal view →
./route/to/article - JSON view →
./route/to/article/feed.json - RSS view →
./route/to/article/feed.xml
Parameter
Some URL parameters are available to manipulate the feed results, so that you can allow third party applications to fetch your data:
chunk→ Determine how many pages to show per request. Default is25.deep→ Determine how many folder path to recurse. Default is0.fire→ JavaScript callback function name that bounds to thewindowobject.part→ Current page offset. Default is1.query→ Determine the search query to filter the feed results.sort→ Default is[-1,"time"]to sort pages descending by thetimedata.
Example API usage:
<script>
function render(json) {
console.log(json);
}
</script>
<script src="http://127.0.0.1/article/feed.json?chunk=5&fire=render"></script>
0 Comments
No comments yet.