-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
43 lines (37 loc) · 1.63 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<!--<meta http-equiv="Content-Language" content="nl-BE"> Only use if site is in non US english -->
<!--<meta name="Language" content="english"> Only use if site is in non US english -->
<meta charset="utf-8" />
<meta name="description" content="">
<title>Get your instagram user ID</title>
<link rel="stylesheet" href="screen.css" type="text/css" media="screen" charset="utf-8">
<script src="http://www.google.com/jsapi?key="></script>
<script>
google.load("jquery", "1.5");
</script>
<script src="application.js"></script>
</head>
<body>
<div id="wrapper">
<p class="js-alert">You need javascript support for this. <br>Either it's turned of or your browser doesn't support it.</p>
<h1>Get your instagram user ID</h1>
<section>
<a id="login" href="https://instagram.com/oauth/authorize/?client_id=7ff0c4cbf5e84da98722cc2250fce08a&redirect_uri=http://yvesvanbroekhoven.github.com/get-your-instagram-user-id/&response_type=token">Log into your Instagram</a>
<a id="get-user-data" href="#">Get my user data</a>
</section>
<div id="result"></div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22218156-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>