-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (69 loc) · 3.65 KB
/
Copy pathindex.html
File metadata and controls
73 lines (69 loc) · 3.65 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 lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Instagram Graph API サンプル</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<script src="js/get-json.js" defer></script>
</head>
<body>
<header class="py-4 text-center text-light bg-dark">
<h1>Instagram Graph APIの使い方</h1>
</header>
<main>
<div class="container py-4">
<ol>
<li><a href="https://bravo-web.com/news/instagram-graph-api" target="_blank" rel="noopener">https://bravo-web.com/news/instagram-graph-api</a>にアクセスして下準備する。※この記事通りに設定できないようなら、諦めたほうがいいです。</li>
<li><a href="https://github.com/hiroghap1/instagram-graph-api" target="_blank" rel="noopener">https://github.com/hiroghap1/instagram-graph-api</a>にアクセスして「get-feed.php」と「api-setting-sample.php」と「js/get-json.js」をダウンロードする。</li>
<li>「api-setting-sample.php」に1で取得したトークンを入力し、「api-setting.php」にファイル名を変更する。</li>
</ol>
<div id="instagram-feed" class="row mt-4">
<div class="col-4">
<figure>
<div class="skeleton" style="width: 100%; padding-top: 100%; margin-bottom: 1rem;"></div>
<p class="skeleton" style="width: 100%; height: 1em"></p>
<p class="skeleton" style="width: 100%; height: 1em"></p>
</figure>
</div>
<div class="col-4">
<figure>
<div class="skeleton" style="width: 100%; padding-top: 100%; margin-bottom: 1rem;"></div>
<p class="skeleton" style="width: 100%; height: 1em"></p>
<p class="skeleton" style="width: 100%; height: 1em"></p>
</figure>
</div>
<div class="col-4">
<figure>
<div class="skeleton" style="width: 100%; padding-top: 100%; margin-bottom: 1rem;"></div>
<p class="skeleton" style="width: 100%; height: 1em"></p>
<p class="skeleton" style="width: 100%; height: 1em"></p>
</figure>
</div>
<div class="col-4">
<figure>
<div class="skeleton" style="width: 100%; padding-top: 100%; margin-bottom: 1rem;"></div>
<p class="skeleton" style="width: 100%; height: 1em"></p>
<p class="skeleton" style="width: 100%; height: 1em"></p>
</figure>
</div>
<div class="col-4">
<figure>
<div class="skeleton" style="width: 100%; padding-top: 100%; margin-bottom: 1rem;"></div>
<p class="skeleton" style="width: 100%; height: 1em"></p>
<p class="skeleton" style="width: 100%; height: 1em"></p>
</figure>
</div>
<div class="col-4">
<figure>
<div class="skeleton" style="width: 100%; padding-top: 100%; margin-bottom: 1rem;"></div>
<p class="skeleton" style="width: 100%; height: 1em"></p>
<p class="skeleton" style="width: 100%; height: 1em"></p>
</figure>
</div>
</div>
</div>
</main>
</body>
</html>