-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions
47
src/content/posts/graphql-instagram/Instagram Storyのメタデータを取得する.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
title: Instagram Storyのメタデータを取得する | ||
published: 2024-11-26 | ||
description: '' | ||
image: '' | ||
tags: [] | ||
category: 'Internet Research' | ||
draft: true | ||
lang: 'ja' | ||
--- | ||
|
||
Burp Suiteを使ってInstagramの通信を観測していたところ、たまたま面白いものが見つかったので共有します。 | ||
|
||
## 手順 | ||
|
||
### 1.ストーリーを取得する | ||
Burp SuiteのProxyを起動してからクライアントからストーリーを表示します。 | ||
ストーリーを表示する前に`HTTP history`をclearしてから押すと後で探しやすくなります。 | ||
他にBurpを使わなくてもブラウザの開発者ツールのネットワークという項目からも同じことができます。 | ||
![](network.png) | ||
|
||
|
||
### 2.GraphQLからデータを取得する | ||
`HTTP history`で得た情報からこのような`/graphql/query`に注目します。 | ||
![](graphql-query.png) | ||
`MEME type`がJSONであるのが特徴です。 | ||
|
||
Response Headerには`X-FB-Friendly-Name`という項目があります。これを見ることでjsonの中身が何なのか何となく分かります。 | ||
|
||
| X-FB-Friendly-Name | 機能内容(予測) | | ||
| ---------------------------------------------- | ------------------------------------------------ | | ||
| PolarisStoriesV3ReelPageGalleryQuery | ストーリーのタイムライン | | ||
| PolarisStoriesV3SeenMutation | 不明 | | ||
| PolarisStoriesV3ReelPageGalleryPaginationQuery | 特定のユーザのストーリー情報 | | ||
| PolarisStoriesV3AdsPoolQuery | 広告関連 | | ||
| PolarisAPICheckNewFeedPostsExistQuery | 名前からして、新しい投稿をチェックする動的処理? | | ||
| PolarisStoriesV3HighlightsPageQuery | 特定のユーザのハイライト情報 | | ||
|
||
メタ情報には12種類の画像サイズや、ストーリーに付けたステッカー情報を見ることができます。 | ||
|
||
![](metadata.png) | ||
![](metadata2.png) | ||
|
||
## 余談 | ||
以前までは`accessibility_caption`という項目で画像に写っている物や文字を自動的に説明する文章が生成されていました。これらは内部で垢BAN対策に用いられているのかなと考察していましたが、今回調べたらNULLに変わっていたのでなくなったのかもしれません。 | ||
![](GOlJu8paQAA73H1.jpg) | ||
![](GOlLYM-bEAAup7a.jpg) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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