我有不同用户的Instagram页面/网址数量,例如https://instagram.com/xxxxx/等等。我想获得该页面的以下信息
name, number of followers, description, bio,
我搜索过所有使用访问令牌的内容。但我很困惑,如果我将从我的帐户中获取访问令牌,我怎样才能获得其他页面的信息?
请指导我该怎么做?
答案 0 :(得分:2)
使用Instagram API需要access token
工作。因此,如果您获得access token
,则可以使用Instagram API。
要获取有关用户的基本信息,请使用以下命令:
https://api.instagram.com/v1/users/{user-id}/?access_token=ACCESS-TOKEN
{user-id}
是非用户名。要从用户名获取{user-id}
,请使用以下命令:
https://api.instagram.com/v1/users/search?q=[USERNAME]&access_token=[ACCESS TOKEN]
要access token
使用此功能:
https://instagram.com/oauth/authorize/?client_id=[CLIENT_ID_HERE]&redirect_uri=http://localhost&response_type=token
最后回复将是:
{
meta: {
code: 200
},
data: {
username: "lanadelrey",
bio: "Put not your trust in princes, nor in the son of man, in whom there is no help",
website: "http://www.lanadelrey.com",
profile_picture: "https://igcdn-photos-c-a.akamaihd.net/hphotos-ak-xpf1/t51.2885-19/10948781_564619503641170_898618667_a.jpg",
full_name: "Lana Del Rey",
counts: {
media: 114,
followed_by: 4207076,
follows: 78
},
id: "305506437"
}
}