私は何千ものinstagramユーザーIDのリストを持っています。 Instagramのユーザー名/ハンドルを取得するにはどうすればよいですか?
ありがとう
このInstagram APIを使用する必要があります。
https://api.instagram.com/v1/users/{user-id}/?access_token=ACCESS-TOKEN
応答には、ユーザー名、氏名、略歴、フォロワー数、その他の情報が含まれます。
ただし、APIにアクセスするには、アプリをInstagramに承認してもらう必要があります。
https://www.picodash.com を試すことができます。IDを検索してユーザー結果を取得できますが、1つずつ検索して情報を取得する手動プロセスになります。
Instagramアプリケーションを承認していない場合は、次のphpライブラリを使用することをお勧めします。 https://github.com/postaddictme/instagram-php-scraper
$instagram = Instagram::withCredentials('username', 'password', 'path/to/cache/');
$account = $instagram->getAccountById('193886659');
echo $account->getUsername();
または直接アクセス:
https://www.instagram.com/query/?q=ig_user(3){id,username,external_url,full_name,profile_pic_url,biography,followed_by{count},follows{count},media{count},is_private,is_verified}
更新:このURLはもう機能しません。 POSTを使用する必要があります。方法を知るためにレポを参照してください
内部/user/
エンドポイントinstagramがAJAXリクエストに使用)を介してAPIを必要とせずにアクセスできます。
https://i.instagram.com/api/v1/users/{user_id}/info/
ここで、{user_id}
は6817966272
のような数値のユーザーIDです。
返される応答の例(ユーザー名についてはuser['username']
キーを参照):
GET https://i.instagram.com/api/v1/users/6817966272/info/
{
"user": {
"pk": 6817966272,
"username": "myriaamaa",
"full_name": "\u2661",
"is_private": false,
"profile_pic_url": "https://instagram.fcnx2-1.fna.fbcdn.net/vp/66486d198fc02046d04d7bc11e51e54a/5D913015/t51.2885-19/s150x150/61226760_298998544311382_2345929352031502336_n.jpg?_nc_ht=instagram.fcnx2-1.fna.fbcdn.net",
"profile_pic_id": "2056076981860037983_6817966272",
"is_verified": false,
"has_anonymous_profile_picture": false,
"media_count": 216,
"follower_count": 4926,
"following_count": 83,
"following_tag_count": 0,
"biography": "YOU. ARE. HOLY \ud83c\udf19",
"external_url": "",
"total_igtv_videos": 0,
"total_ar_effects": 0,
"usertags_count": 6,
"is_favorite": false,
"is_interest_account": true,
"hd_profile_pic_versions": [
{
"width": 320,
"height": 320,
"url": "https://instagram.fcnx2-1.fna.fbcdn.net/vp/fafecdc76c82de85580c9c03d14b1aaa/5D9BD2E5/t51.2885-19/s320x320/61226760_298998544311382_2345929352031502336_n.jpg?_nc_ht=instagram.fcnx2-1.fna.fbcdn.net"
},
{
"width": 640,
"height": 640,
"url": "https://instagram.fcnx2-1.fna.fbcdn.net/vp/0ec5339e3958c9c41414e5378fa2443c/5D7DD28A/t51.2885-19/s640x640/61226760_298998544311382_2345929352031502336_n.jpg?_nc_ht=instagram.fcnx2-1.fna.fbcdn.net"
}
],
"hd_profile_pic_url_info": {
"url": "https://instagram.fcnx2-1.fna.fbcdn.net/vp/8b3859950f0bb8e1a4a8f65566992b78/5D9132EF/t51.2885-19/61226760_298998544311382_2345929352031502336_n.jpg?_nc_ht=instagram.fcnx2-1.fna.fbcdn.net",
"width": 774,
"height": 774
},
"mutual_followers_count": 0,
"has_highlight_reels": true,
"can_be_reported_as_fraud": false,
"is_business": false,
"account_type": 1,
"is_call_to_action_enabled": null,
"include_direct_blacklist_status": true,
"is_potential_business": true,
"is_bestie": false,
"has_unseen_besties_media": false,
"show_account_transparency_details": false,
"auto_expand_chaining": false,
"highlight_reshare_disabled": false
},
"status": "ok"
}
InstagramのAPIの制限(SandBoxを意味する)のため、そのような場合にinstagram公式APIを使用するのは簡単ではないので、スニペットをPythonこれはInstagramユーザーIDをユーザー名に、またはその逆に変換します。
Instagramから制限なく情報を取得するためにGraphQL APIを使用します。
[+] Instagram APIの変更によりコードが更新されました(30/5/2019)
import json
import requests
import re
import hashlib
def usernameToUserId(user):
r1 = requests.get('https://www.instagram.com/web/search/topsearch/?query=' + user, headers={
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0'}).text
if json.loads(r1)['users'][0]['user']['username'] == user:
return json.loads(r1)['users'][0]['user']['pk']
def useridToUsername(id):
if str(id).isnumeric():
r1 = requests.get('https://instagram.com/instagram/', headers={
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0', }).text
rhx_gis = json.loads(re.compile('window._sharedData = ({.*?});', re.DOTALL).search(r1).group(1))['nonce']
ppc = re.search(r'ProfilePageContainer.js/(.*?).js', r1).group(1)
r2 = requests.get('https://www.instagram.com/static/bundles/es6/ProfilePageContainer.js/' + ppc + '.js').text
query_hash = re.findall(r'{value:!0}\);const o=\"(.*?)\"', r2)[0]
query_variable = '{"user_id":"' + str(id) + '","include_reel":true}'
t = rhx_gis + ':' + query_variable
x_instagram_gis = hashlib.md5(t.encode("utf-8")).hexdigest()
header = {'X-Instagram-GIS': x_instagram_gis,
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0',
'X-Requested-With': 'XMLHttpRequest'}
r3 = requests.get(
'https://www.instagram.com/graphql/query/?query_hash=' + query_hash + '&variables=' + query_variable,
headers=header).text
username = json.loads(r3)['data']['user']['reel']['user']['username']
return username
#print(useridToUsername("1234567890"))
#print(usernameToUserId("TheUserName"))
Githubリンク: https://github.com/Snbig/InstaTrack
Pythonでユーザーが投稿からスクリーン名を取得します(例 https://www.instagram.com/p/Bqfhjk_AMTq/ ):
import requests, re, json
from bs4 import BeautifulSoup
r = requests.get('https://www.instagram.com/p/Bqfhjk_AMTq/')
soup = BeautifulSoup(r.content, "lxml")
scripts = soup.find_all('script', type="text/javascript", text=re.compile('window._sharedData'))
stringified_json = scripts[0].get_text().replace('window._sharedData = ', '')[:-1]
print json.loads(stringified_json)['entry_data']['PostPage'][0]['graphql']['shortcode_media']['owner']['username']
承認済みの回答で参照されているInstagram APIが 使用不可 になったため、他の回答で説明されているスクレイピングに頼らなければなりません。そうは言っても、ユーザーがユーザー名を何に変更したかを把握しようとしていたので、このSOになりました。
私が考え出したのは次のとおりです。ユーザーIDを取得している場合は、おそらく 4K Stogram のようなものをスクレイピングするか使用しているでしょう。その場合、メディアページの直接URLは次のようになります。 https://www.instagram.com/p/Bjh4rbdHcCU/ 新しいユーザー名を取得する最も簡単な方法は新しいユーザー名で更新されたURLに直接移動します。自動化する場合は、ページの<title>
要素。
元のポスターの質問はこれとは少し異なっていましたが、これがこのページで終わる人々の一部の解決策であることを願っています。