-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
73 lines (68 loc) · 3.88 KB
/
Copy pathabout.html
File metadata and controls
73 lines (68 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>InstaPets!</title>
<link rel="stylesheet" href="css/instagallery.css">
<link rel="stylesheet" href="css/offcanvas.css">
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.isotope/1.5.25/jquery.isotope.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.4/handlebars.min.js"></script>
</head>
<body>
<div class="navbar navbar-fixed-top navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">InstaPets</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="instagallery.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="instagramapi.html">InstagramAPI</a></li>
</ul>
</div>
<!-- /.nav-collapse -->
</div>
<!-- /.container -->
</div>
<!-- /.navbar -->
<div class="container" role="main">
<div class="row">
<div class="col-xs-12 col-sm-9">
<div class="row">
<ul>
<li class="lead">InstaPets is entirely a client-side app built using javascript/jQuery</li>
<li class="lead">InstaPets uses the Instagram API to fetch the photos tagged with the following keywords - cat, dog, hamster, bird and rabbit</li>
<li class="lead">Only 20 photos are initally fetched for each tag. Further check is in place to try and narrow down the photos that have a minimal set of expected matching tags</li>
<li class="lead">The endpoint used to pull the tagged media is <span class="label label-default">/tags/tag-name/media/recent</span></li>
<li class="lead">Clicking on the specific pet type listed in the <strong>Side Nav panel</strong> will only display the media with the corresponding tag</li>
<li class="lead">The last item in the side Nav, <strong>My Feed</strong>, displays the current logged-in user's feed. It's initially hidden until you click on the <strong>Login</strong> menu item in the Top Nav</li>
<li class="lead"><strong>Login</strong> allows a user to login <strong>using OAuth</strong>. Once logged in, InstaPets will pull in the user's feed, which can be exclusively seen when clicked on the <strong>My Feed</strong> link available in the Side Nav.</li>
<li class="lead"><span class="label label-default">/users/self/feed</span> endpoint is used to pull in the logged-in user's feed</li>
</ul>
</div>
</div>
</div>
</div>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50993121-2', 'auto');
ga('send', 'pageview');
</script>
</html>