Merge branch 'examples'

* examples:
  Add Reddit pics example
This commit is contained in:
Zach Borboa
2014-05-20 22:08:53 -07:00
2 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ if (isset($_SESSION['access_token'])) {
));
foreach ($curl->response->data as $media) {
echo
'<a href="' . $media->link . '" target="blank">' .
'<a href="' . $media->link . '" target="_blank">' .
'<img alt="" src="' . $media->images->thumbnail->url . '" />' .
'</a>';
}
+28
View File
@@ -0,0 +1,28 @@
<?php
require '../src/Curl.class.php';
$data = array();
if (isset($_GET['after'])) {
$data['after'] = $_GET['after'];
}
$curl = new Curl();
$curl->get('http://www.reddit.com/r/pics/top/.json', $data);
echo '<ul>';
foreach ($curl->response->data->children as $result) {
$pic = $result->data;
echo
'<li>' .
'<a href="' . $pic->url . '" target="_blank">' .
$pic->title . '<br />' .
'<img alt="" src="' . $pic->thumbnail . '" />' .
'</a> ' .
$pic->score . ' pts ' . $pic->num_comments . ' comments by ' . $pic->author .
'</li>';
}
echo '</ul>';
echo '<a href="?after=' . $curl->response->data->after . '">Next</a>';