Instagramで誰かをフォローしている人の数を数え、その数を変数に入れる方法を知りたいのですが、Instagramはこのリンクを提供します:
https://api.instagram.com/v1/users/3/followed-by?access_token=xxxxxxxxx.xxxxxxxxxxxxxxxxxxxx
そして、そのような結果を表示します
{
"data": [{
"username": "meeker",
"first_name": "Tom",
"profile_picture": "http://distillery.s3.amazonaws.com/profiles/profile_6623_75sq.jpg",
"id": "6623",
"last_name": "Meeker"
},
{
"username": "Mark",
"first_name": "Mark",
"profile_picture": "http://distillery.s3.amazonaws.com/profiles/profile_29648_75sq_1294520029.jpg",
"id": "29648",
"last_name": "Shin"
},
{
"username": "nancy",
"first_name": "Nancy",
"profile_picture": "http://distillery.s3.amazonaws.com/profiles/profile_13096_75sq_1286441317.jpg",
"id": "13096",
"last_name": "Smith"
}]
}
そこにいくつあるかを数えて変数に入れるにはどうすればよいですか。
<? echo "You are been follow by ".$followers." users!"; ?>
表示するには: あなたは 3 人のユーザーにフォローされています!