This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href=""><img src="img/IMG_1758.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_1764.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_1798.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_1799.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_1758.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_1764.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_1798.jpg" alt="" /></a> | |
<a href=""><img src="img/IMG_2123.jpg" alt="" /></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>スライドショー</title> | |
<style> | |
body { | |
margin: 10px auto; | |
text-align: center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>タブメニュー</title> | |
<meta name="viewport" content="width=device-width; initial-scale=1.0"> | |
<link rel="stylesheet" media="screen" href="css/style.css" /> | |
</head> | |
<body> | |
<div class="tab"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://api.instagram.com/v1/users/self/media/recent/?access_token=アクセストークン | |
self部分をユーザIDにすることでも可能 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$curl = curl_init(); | |
curl_setopt($curl, CURLOPT_URL, $url); | |
curl_setopt($curl, CURLOPT_POST, 1); | |
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params)); | |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); | |
//下記一行を追加 | |
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER, false); | |
$res = curl_exec($curl); |