Usage
- Normal view →
./path/to/page
- JSON view →
./path/to/page/feed.json
- RSS view →
./path/to/page/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 thewindow
object.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 thetime
data.
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.