ユーザーとして認証せずにInstagramからユーザーのメディアを取得するにはどうすればよいですか?


175

ユーザーの最近のInstagramメディアをサイドバーに配置しようとしています。Instagram APIを使用してメディアを取得しようとしています。

http://instagram.com/developer/endpoints/users/

ドキュメントにはGET https://api.instagram.com/v1/users/<user-id>/media/recent/と書かれていますが、OAuthアクセストークンを渡すように書かれています。アクセストークンは、ユーザーに代わって動作する承認を表します。ユーザーがInstagramにログインしてサイドバーにこれを表示したくない。彼らはInstagramのアカウントを持っている必要さえありません。

たとえば、Instagramにログインせずにhttp://instagram.com/thebrainscoopにアクセスして写真を見ることができます。APIを通じてそれを実行したいと考えています。

Instagram APIでは、非ユーザー認証リクエストはのclient_id代わりにを渡しaccess_tokenます。しかし、それを試してみると、次のようになります。

{
  "meta":{
    "error_type":"OAuthParameterException",
    "code":400,
    "error_message":"\"access_token\" URL parameter missing. This OAuth request requires an \"access_token\" URL parameter."
  }
}

では、これは不可能ですか?最初にOAuthを介してInstagramアカウントにログインするようユーザーに要求せずに、ユーザーの最新(パブリック)メディアを取得する方法はありませんか?


このプラグインでは、ユーザーにInstagramアカウントへのログインを要求することなく、ユーザーが最新の公開メディアを取得した方法のソースコードをチェックアウトするだけで可能です。:D smashballoon.com/instagram-feed/demo クライアントIDが必要で、アクセストークンは必要ありません。:D
jehzlau 2016年

すべての大きなAPIのように、彼らがあなたを追跡し、ダウンロード(レート...)を制限できるように認証する必要があります。実ユーザー向けの公開とスクラッパー/ボット向けの公開があります。これは通常、実際のユーザーが広告を表示してサービスを直接使用するのとは異なります。
Christophe Roussy

1
これらの方法はどれも機能しません。stackoverflow.com/questions/49852080/…を
Moradnejad

回答:


123

これは遅いですが、Instagramのドキュメントでは見られなかったので、誰かを助けるのに価値があります。

https://api.instagram.com/v1/users/<user-id>/media/recent/(現時点では)GETを実行するには、実際にはOAuthアクセストークンは必要ありません。

実行できます https://api.instagram.com/v1/users/[USER ID]/media/recent/?client_id=[CLIENT ID]

[クライアントID]は、クライアントの管理を介してアプリに登録された有効なクライアントIDです(ユーザーには一切関係ありません)。ユーザー名から[ユーザーID]を取得するには、GETユーザー検索リクエストを実行します。 https://api.instagram.com/v1/users/search?q=[USERNAME]&client_id=[CLIENT ID]


9
彼らはまた気が変わったのではないかと思います。OPに示されているのと同じエラー応答が返されます
James

35
これは2015年11月17日より前に作成されたアプリでのみ有効で、2016年6月以降はまったくサポートされません。その後、oauth access_tokenが必要になります。instagram.com/developer/changelog
Dax Fohl

211
これはとても愚かでイライラします。すでに公開されている画像を表示するためだけにアクセストークンを強制するのはなぜですか?私は世界中のすべてのユーザーのためにそれらを洗い流そうとしているのではなく、クライアントの最新のインスタを何時間もいじることなく表示したいだけです。ガ!
Matt Fletcher

8
@Cabusレート制限、仲間。
Walf、2016年

20
@MattFletcherこれはさらに馬鹿げています。アプリの権限レビューを行う必要があります。このユースケース「クライアント自身のフィードを自分のWebページに表示する」はユースケースの1つではないため、それが実行可能かどうかはわかりません。ええと、これらの制限はうんざりです。
Ciantic

334

var name = "smena8m";
$.get("https://images"+~~(Math.random()*3333)+"-focus-opensocial.googleusercontent.com/gadgets/proxy?container=none&url=https://www.instagram.com/" + name + "/", function(html) {
if (html) {
    var regex = /_sharedData = ({.*);<\/script>/m,
        json = JSON.parse(regex.exec(html)[1]),
        edges = json.entry_data.ProfilePage[0].graphql.user.edge_owner_to_timeline_media.edges;

      $.each(edges, function(n, edge) {
          var node = edge.node;
          $('body').append(
              $('<a/>', {
              href: 'https://instagr.am/p/'+node.shortcode,
              target: '_blank'
          }).css({
              backgroundImage: 'url(' + node.thumbnail_src + ')'
          }));
      });
    }
});
html, body {
  font-size: 0;
  line-height: 0;
}

a {
  display: inline-block;
  width: 25%;
  height: 0;
  padding-bottom: 25%;
  background: #eee 50% 50% no-repeat;
  background-size: cover;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

このような?__a=1ランディングページアドレスの横を使用して、Instagramユーザーの写真フィードをJSON形式でダウンロードできます。ユーザーIDを取得したり、アプリを登録したり、トークンやoAuthを登録したりする必要はありません。

min_idそして、max_id変数がページネーションのために使用することができ、ここでの例では、

YQL切り取られたiframe内では機能しない可能性があるため、いつでもYQLコンソールで手動で確認できます

2018年4月の更新:最新のInstagramの更新後、クライアント側(JavaScript)でこれを行うことはできませんCORS Access-Control-Allow-Headers。制限のため、署名付きリクエストのカスタムヘッダーをJavaScriptで設定できないためです。や、リクエストパラメータにphp基づく適切な署名を使用してrhx_gis、サーバー側のメソッドを介してこれを行うことも可能csrf_tokenです。詳細については、こちらをご覧ください

2019年1月の更新:YQLが廃止されました。Instagram CORSページのプロキシとしてGoogle Image Proxyを使用して最新の更新を確認してください。次に、負の瞬間のみ-この方法ではページ分割は使用できません。

PHP 解決:

    $html = file_get_contents('https://instagram.com/apple/');
    preg_match('/_sharedData = ({.*);<\/script>/', $html, $matches);
    $profile_data = json_decode($matches[1])->entry_data->ProfilePage[0]->graphql->user;

14
@ 350Dどうやってこれを見つけたの?私は彼らのドキュメントのどこにもそれを見つけることができません。私はこのエンドポイントで何が可能かについてもっと読みたいと思っています(例えば、正方形の画像と非正方形、これが6月に終わる予定があるかどうかなど)-ありがとう!
Phil Johnston

8
@Phil Johnstonただの調査thisこれをもう1つ見てみましょう。写真のランディングページURLの横に/ media /?size = Lを追加して、完全な解像度の写真を取得できます。
350D 2016年

9
@ user2659694私は最終的にこの方法で次のページを取得するための解決策を見つけました/ media /?max_id = [MAX_ID]
Reza

3
参考までに、これは自分でInstagramアカウントにログインしている場合にのみ機能するようです。Chromeなどのシークレットモードで試してみると、JSONレスポンスにアイテムが含まれていないことがわかります。これをスクリプトに組み込んでWebサーバー上のURLのリストを取得しようとしていたため、以前の認証方法に戻す必要がありました。
Ryan Zink、2016年

9
@RyanZinkプライベートアカウントを試しましたか?ログアウトしたり、パブリックアカウントでシークレットモードで使用したりしても問題ありません。
ライアンは2016年

41

11.11.2017
Instagramがこのデータの提供方法を​​変更したため、現在、上記の方法はどれも機能しません。:ここでは、ユーザのメディアを取得するための新しい方法です
GET https://instagram.com/graphql/query/?query_id=17888483320059182&variables={"id":"1951415043","first":20,"after":null}

query_id永久値: - 17888483320059182(ノート、それは将来変更される可能性がありますが)。
id-ユーザーのID。ユーザーのリストが付属している場合があります。ユーザーのリストを取得するには、次のリクエストを使用できます。- GET https://www.instagram.com/web/search/topsearch/?context=blended&query=YOUR_QUERY
first取得するアイテムの量。
after-そのIDからアイテムを取得する場合は、最後のアイテムのID。


query_idとユーザーのIDをどこから取得するか教えていただけませんか?
Vijaysinh Parmar

2
私が述べたように、@ VijaysinhParmar query_idは永続的な値です。つまり、常に17888483320059182です(少なくともInstagramが変更しない限り)。ユーザーの
ID-

1
インターネットのどこかで、正確に覚えていません。しかし、私はInstagramとは何の関係もないので、状況が変わった場合、新しいものをあなたに伝えることができません:(
Footniko

1
このアプローチのレート制限ポリシーは何ですか?
kkzxak47 2017年

1
CURLリクエストを介してこのURLをリクエストする際に問題が発生した場合は、Cookieリクエストヘッダーを取得する必要があります([ネットワーク]タブを開き、URLを実行した後、Cookieヘッダーをコピーして、curlリクエストヘッダーに貼り付けます。これを行わない場合は、 403アクセス拒否エラーが発生します)。
アンデルス

39

認証なしで次のAPIを使用して、ユーザーの最新のメディアを取得することができました(説明、いいね、コメント数を含む)。

https://www.instagram.com/apple/?__a=1

例えば

https://www.instagram.com/{username}/?__a=1

1
これは私にとっても機能しましたが、「is_video = true」の場合、データにビデオURLがありません。
ディディキー2017

4
右、サムネイルのみを取得できます(ビデオ自体は取得できません)-残念ながら、これに関する公式のドキュメントは見つかりませんでした。また、このAPIが廃止されているかどうか、またはサポートされる期間はわかりません。
Michael

8
2018-04-13現在、これはもう機能していないようです。Facebookの最新のケンブリッジアナリチカデータスキャンダルのためか、彼らは物事を1トン引き締めています。認証なしで基本的なユーザーデータを取得するための他の提案はありますか?
BakerStreetSystems 2018

2
はい、このAPIが動作していなかった時間があった-しかし、今では再びだ
マイケル・

4
それは私にとってはうまくいきましたが、私がInstagramにログインしているときだけです。
ズンディ

16

先週の時点で、Instagramは/media/URLを無効にしていたため、今のところ問題なく動作する回避策を実装しました。

このスレッドでみんなの問題を解決するために、私はこれを書きました:https : //github.com/whizzzkid/instagram-reverse-proxy

次のエンドポイントを使用して、instagramのすべてのパブリックデータを提供します。

ユーザーメディアを取得します。

https://igapi.ga/<username>/media
e.g.: https://igapi.ga/whizzzkid/media 

制限数のあるユーザーメディアを取得します。

https://igapi.ga/<username>/media?count=N // 1 < N < 20
e.g.: https://igapi.ga/whizzzkid/media?count=5

JSONPを使用:

https://igapi.ga/<username>/media?callback=foo
e.g.: https://igapi.ga/whizzzkid/media?callback=bar

また、プロキシAPIは次のページと前のページのURLを応答に追加するため、最後にそれを計算する必要はありません。

あなたがそれを気に入ってくれることを願っています!

これを見つけてくれて@ 350Dに感謝します:)


1
@rexは、最後に物事がどのように機能するかを変更するまで、私たちはすばらしいです!おそらく彼らは、彼らが次の3にしません、最後の3年間で気にしませんでした
whizzzkid

3
@whizzzkid不運、彼らはそれを変えます。ユーザーエンドポイントで処理できると思いましたが、ログインしていないユーザーのリクエストには制限があります。何か案は?
nobilik

1
@nobilik回避策が用意されています。igpi.ga/ whizzzkid / media?count = 3igpi.ga/graphql/query/?user_id=1606740656&count=3はどちらもデータを返すはずです。これらのURLでは、未定義のリファラーは無効になっています。
whizzzkid 2017年

1
@whizzzkid-うまくいきました!どうもありがとう-あなたは学者であり紳士です!
James Trickey 2017年

1
「リファラーはアクセスを拒否されました」というエラーが表示されます。多分これはもはや機能しませんか?
khalid13

14

Instagram APIでは、ユーザーの最近のメディアエンドポイントにアクセスするには、OAuthによるユーザー認証が必要です。現在、ユーザーのすべてのメディアを取得する方法は他にないようです。


4
これは意味がありません。自分のメディアを自分のWebサイトに表示したい場合、それを見たいすべての人にInstagramアカウントが必要なのはなぜですか?
ninjasense 2013年

5
忍者感覚-それはそのように機能するとは思わない あなたのウェブサイトには、メディアを取り込むために提供されたoauth資格情報でInstagram APIをクエリするコードが少し含まれている必要があると思います。次に、サイトのすべてのユーザーにメディアを表示します。あなたのサイトはInstagramで認証する必要がある唯一のものです。
Bill Rawlinson、

9

単一のアカウントで使用するアクセストークンを生成する方法を探している場合は、これを試すことができます-> https://coderwall.com/p/cfgneq

特定のアカウントの最新のメディアをすべて取得するためにInstagram APIを使用する方法が必要でした。


5
これは多かれ少なかれ私がやったことです:新しいアカウントを作成し、そのためのアクセストークンを作成し、そのトークンをサーバー構成のAPIキーの横に保存しました。ただし、アクセストークンをユーザーに送信する必要があるため、これはJSアプリの貧弱なソリューションです(多くのサンプルコードで確認しています)。幸いなことに、私はサーバー側でそれを行うことができます。
Peeja 2013

4
@CraigHeneveld帽子のaccess_tokenを最新の状態に保つにはどうすればいいですか?有効期限が切れていませんか?
Ryan Ore

トークンの有効期限はありますか?
Monitus 2015

私の記憶が私に役立つ場合、パスワードを変更しない限り、キーは期限切れになりません。> -ここで問題に別のスレッドがあるstackoverflow.com/questions/22753170/...
クレイグHeneveldは

複数のユーザーの写真を取得するにはどうすればよいですか?同様に、「、」で区切られた複数のユーザーIDを渡すことができますか?
Aadil Keshwani 16年

9

これがRailsソリューションです。それは一種のバックドアで、実際にはフロントドアです。

# create a headless browser
b = Watir::Browser.new :phantomjs
uri = 'https://www.instagram.com/explore/tags/' + query
uri = 'https://www.instagram.com/' + query if type == 'user'

b.goto uri

# all data are stored on this page-level object.
o = b.execute_script( 'return window._sharedData;')

b.close

返されるオブジェクトは、ユーザー検索かタグ検索かによって異なります。私はこのようなデータを取得します:

if type == 'user'
  data = o[ 'entry_data' ][ 'ProfilePage' ][ 0 ][ 'user' ][ 'media' ][ 'nodes' ]
  page_info = o[ 'entry_data' ][ 'ProfilePage' ][ 0 ][ 'user' ][ 'media' ][ 'page_info' ]
  max_id = page_info[ 'end_cursor' ]
  has_next_page = page_info[ 'has_next_page' ]
else
  data = o[ 'entry_data' ][ 'TagPage' ][ 0 ][ 'tag' ][ 'media' ][ 'nodes' ]
  page_info = o[ 'entry_data' ][ 'TagPage' ][ 0 ][ 'tag' ][ 'media' ][ 'page_info' ]
  max_id = page_info[ 'end_cursor' ]
  has_next_page = page_info[ 'has_next_page' ]
end

次に、次の方法でURLを作成して、結果の別のページを取得します。

  uri = 'https://www.instagram.com/explore/tags/' + query_string.to_s\
    + '?&max_id=' + max_id.to_s
  uri = 'https://www.instagram.com/' + query_string.to_s + '?&max_id='\
    + max_id.to_s if type === 'user'

このソリューションは私のために働いていますが、私はそれでいくつかの問題を抱えています。データをロードした後、私のRailsサーバー(Rails 5.0.0、Puma 3.6.0サーバーを使用)が不可解に再起動します...可能な解決策はありますか?
Luis Eduardo Rojas Cabrera

8

Instagramの絶え間なく変化する(そして恐ろしく設計された)APIスキーマのおかげで、上記のほとんどは2018年4月の時点で機能しなくなります。

https://www.instagram.com/username/?__a=1メソッドを使用してAPIを直接クエリする場合に、個々の投稿データにアクセスするための最新のパスを次に示します。

返されたJSONデータが$data次のパスの例を使用して各結果をループできると仮定します。

foreach ($data->graphql->user->edge_owner_to_timeline_media->edges as $item) {

    $content_id = $item->node->id; 
    $date_posted = $item-node->taken_at_timestamp;
    $comments = $item->node->edge_media_to_comment->count;
    $likes = $item->node->edge_liked_by->count;
    $image = $item->node->display_url;
    $content = $item->node->edge_media_to_caption->edges[0]->node->text;
    // etc etc ....
}

この最近の変更の主なものはgraphqledge_owner_to_timeline_mediaでした。

彼らはDEC 2018で「ビジネス」以外の顧客に対してこのAPIアクセスを無効にする予定なので、できる限りそれを最大限に活用します。

それが誰かを助けることを願っています;)


これは私を助けてくれました。クライアントに最新のInstagramの投稿を表示したいだけです。ありがとう!
weston deboer

1
instagram.com/username/?__a=1でエラーが発生:www.instagram.comへのアクセスが拒否されましたこのページを表示する権限がありません。HTTPエラー403その他のアイデアはありますか?
Hese

1
うんInstagramは今これを殺しました。「Instagramユーザーのプライバシーとセキュリティを継続的に改善するために、Instagram APIプラットフォームの廃止を加速し、次の変更をすぐに有効にします。これはお客様のビジネスやサービスに影響を与える可能性があることを理解しており、プラットフォームの安全を維持するためのサポートに感謝いたします。これらの機能はすぐに無効になります(以前は2018年7月31日または2018年12月11日に廃止予定に設定されていました。)
スパイス

私が読んでいる内容が正しい場合、「ビジネス以外」のアカウントから画像やデータを取得することはできなくなります。彼らはプラットフォームAPIを完全に殺している。それはそれだと思います... instagram.com/developer/changelog
spice

1
@james_tookeyは可能性のある仲間ではないでしょう。新しいプライバシー制限により、個人アカウントのユーザー/データのクエリや取得はできなくなり、ビジネスアカウントのみが可能になります。基本的に、彼らは個人アカウントのすべてのAPI使用を殺しました。
スパイス

7

JSFiddle

JavaScript:

$(document).ready(function(){

    var username = "leomessi";
    var max_num_items = 5;

    var jqxhr = $.ajax( "https://www.instagram.com/"+username+"/?__a=1" ).done(function() {
        //alert( "success" );
    }).fail(function() {
        //alert( "error" );
    }).always(function(data) {
        //alert( "complete" )
        items = data.graphql.user.edge_owner_to_timeline_media.edges;
        $.each(items, function(n, item) {
            if( (n+1) <= max_num_items )
            {
                var data_li = "<li><a target='_blank' href='https://www.instagram.com/p/"+item.node.shortcode+"'><img src='" + item.node.thumbnail_src + "'/></a></li>";
                $("ul.instagram").append(data_li);
            }
        });

    });

});

HTML:

<ul class="instagram">
</ul>

CSS:

ul.instagram {
    list-style: none;
}

ul.instagram li {
  float: left;
}

ul.instagram li img {
    height: 100px;
}

5

私が理解するのが難しかったので、@ 350Dの回答に追加したいだけです。

コードの私のロジックは次のとおりです:

初めてAPIを呼び出すときは、だけを呼び出していhttps://www.instagram.com/_vull_ /media/ます。応答を受け取ったら、ブール値をチェックしますmore_available。trueの場合、配列から最後の写真を取得し、そのIDを取得して、Instagram APIを再度呼び出しますが、今回は https://www.instagram.com/_vull_/media/?max_id=1400286183132701451_1642962433

ここで知っておくべき重要なことは、このIDは配列の最後の画像のIDです。したがって、配列内の画像の最後のIDでmaxIdを要求すると、次の20画像が取得されます。

これで説明が明確になることを願っています。


4

Oauthをバイパスすると、おそらくそれらがどのInstagramユーザーであるかがわかりません。そうは言っても、認証なしでInstagramの画像を取得する方法はいくつかあります。

  1. InstagramのAPIを使用すると、認証なしでユーザーの最も人気のある画像を表示できます。次のエンドポイントを使用:ここにリンクがあります

  2. Instagramは、ここでタグのRSSフィードを提供しています。

  3. Instagramのユーザーページは公開されているので、PHPとCURLを使用してページを取得し、DOMパーサーを使用してHTMLで目的のイメージタグを検索できます。


9
時代遅れのようです。
Burak Tokak

Instagramの認証をバイパスすることは可能ですか
JAck

3

もう1つのトリックは、ハッシュタグで写真を検索することです。

GET https://www.instagram.com/graphql/query/?query_hash=3e7706b09c6184d5eafd8b032dbcf487&variables={"tag_name":"nature","first":25,"after":""}

どこ:

query_hash -永続的な値(17888483320059182のハッシュを信じます、将来変更される可能性があります)

tag_name -タイトルはそれ自体を物語っています

first -取得するアイテムの量(理由はわかりませんが、この値は期待どおりに機能しません。返される写真の実際の数は、値に4.5を掛けた値よりわずかに大きくなります(値25で約110、値で約460)値100))

after-そのIDからアイテムを取得する場合は、最後のアイテムのID。end_cursorここではJSON応答の値を使用できます。


どうやってこれを見つけるのですか?
ekntrtmz



2

あなたはInstagramのユーザーの公開情報取得するために、このAPIを使用することができます:
https://api.lityapp.com/instagrams/thebrainscoop?limit=2を

あなたが制限パラメータを設定しない場合、投稿はデフォルトで12に制限されています

。このコードで確認できるように、APIはHtmlUnitを使用してSpringBootで作成されました。

public JSONObject getPublicInstagramByUserName(String userName, Integer limit) {
    String html;
    WebClient webClient = new WebClient();

    try {
        webClient.getOptions().setCssEnabled(false);
        webClient.getOptions().setJavaScriptEnabled(false);
        webClient.getOptions().setThrowExceptionOnScriptError(false);
        webClient.getCookieManager().setCookiesEnabled(true);

        Page page = webClient.getPage("https://www.instagram.com/" + userName);
        WebResponse response = page.getWebResponse();

        html = response.getContentAsString();
    } catch (Exception ex) {
        ex.printStackTrace();

        throw new RuntimeException("Ocorreu um erro no Instagram");
    }

    String prefix = "static/bundles/es6/ProfilePageContainer.js";
    String sufix = "\"";
    String script = html.substring(html.indexOf(prefix));

    script = script.substring(0, script.indexOf(sufix));

    try {
        Page page = webClient.getPage("https://www.instagram.com/" + script);
        WebResponse response = page.getWebResponse();

        script = response.getContentAsString();
    } catch (Exception ex) {
        ex.printStackTrace();

        throw new RuntimeException("Ocorreu um erro no Instagram");
    }

    prefix = "l.pagination},queryId:\"";

    String queryHash = script.substring(script.indexOf(prefix) + prefix.length());

    queryHash = queryHash.substring(0, queryHash.indexOf(sufix));
    prefix = "<script type=\"text/javascript\">window._sharedData = ";
    sufix = ";</script>";
    html = html.substring(html.indexOf(prefix) + prefix.length());
    html = html.substring(0, html.indexOf(sufix));

    JSONObject json = new JSONObject(html);
    JSONObject entryData = json.getJSONObject("entry_data");
    JSONObject profilePage = (JSONObject) entryData.getJSONArray("ProfilePage").get(0);
    JSONObject graphql = profilePage.getJSONObject("graphql");
    JSONObject user = graphql.getJSONObject("user");
    JSONObject response = new JSONObject();

    response.put("id", user.getString("id"));
    response.put("username", user.getString("username"));
    response.put("fullName", user.getString("full_name"));
    response.put("followedBy", user.getJSONObject("edge_followed_by").getLong("count"));
    response.put("following", user.getJSONObject("edge_follow").getLong("count"));
    response.put("isBusinessAccount", user.getBoolean("is_business_account"));
    response.put("photoUrl", user.getString("profile_pic_url"));
    response.put("photoUrlHD", user.getString("profile_pic_url_hd"));

    JSONObject edgeOwnerToTimelineMedia = user.getJSONObject("edge_owner_to_timeline_media");
    JSONArray posts = new JSONArray();

    try {
        loadPublicInstagramPosts(webClient, queryHash, user.getString("id"), posts, edgeOwnerToTimelineMedia, limit == null ? 12 : limit);
    } catch (Exception ex) {
        ex.printStackTrace();

        throw new RuntimeException("Você fez muitas chamadas, tente mais tarde");
    }

    response.put("posts", posts);

    return response;
}

private void loadPublicInstagramPosts(WebClient webClient, String queryHash, String userId, JSONArray posts, JSONObject edgeOwnerToTimelineMedia, Integer limit) throws IOException {
    JSONArray edges = edgeOwnerToTimelineMedia.getJSONArray("edges");

    for (Object elem : edges) {
        if (limit != null && posts.length() == limit) {
            return;
        }

        JSONObject node = ((JSONObject) elem).getJSONObject("node");

        if (node.getBoolean("is_video")) {
            continue;
        }

        JSONObject post = new JSONObject();

        post.put("id", node.getString("id"));
        post.put("shortcode", node.getString("shortcode"));

        JSONArray captionEdges = node.getJSONObject("edge_media_to_caption").getJSONArray("edges");

        if (captionEdges.length() > 0) {
            JSONObject captionNode = ((JSONObject) captionEdges.get(0)).getJSONObject("node");

            post.put("caption", captionNode.getString("text"));
        } else {
            post.put("caption", (Object) null);
        }

        post.put("photoUrl", node.getString("display_url"));

        JSONObject dimensions = node.getJSONObject("dimensions");

        post.put("photoWidth", dimensions.getLong("width"));
        post.put("photoHeight", dimensions.getLong("height"));

        JSONArray thumbnailResources = node.getJSONArray("thumbnail_resources");
        JSONArray thumbnails = new JSONArray();

        for (Object elem2 : thumbnailResources) {
            JSONObject obj = (JSONObject) elem2;
            JSONObject thumbnail = new JSONObject();

            thumbnail.put("photoUrl", obj.getString("src"));
            thumbnail.put("photoWidth", obj.getLong("config_width"));
            thumbnail.put("photoHeight", obj.getLong("config_height"));
            thumbnails.put(thumbnail);
        }

        post.put("thumbnails", thumbnails);
        posts.put(post);
    }

    JSONObject pageInfo = edgeOwnerToTimelineMedia.getJSONObject("page_info");

    if (!pageInfo.getBoolean("has_next_page")) {
        return;
    }

    String endCursor = pageInfo.getString("end_cursor");
    String variables = "{\"id\":\"" + userId + "\",\"first\":12,\"after\":\"" + endCursor + "\"}";

    String url = "https://www.instagram.com/graphql/query/?query_hash=" + queryHash + "&variables=" + URLEncoder.encode(variables, "UTF-8");
    Page page = webClient.getPage(url);
    WebResponse response = page.getWebResponse();
    String content = response.getContentAsString();
    JSONObject json = new JSONObject(content);

    loadPublicInstagramPosts(webClient, queryHash, userId, posts, json.getJSONObject("data").getJSONObject("user").getJSONObject("edge_owner_to_timeline_media"), limit);
}


これは応答の例です:

{
  "id": "290482318",
  "username": "thebrainscoop",
  "fullName": "Official Fan Page",
  "followedBy": 1023,
  "following": 6,
  "isBusinessAccount": false,
  "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/447ffd0262082f373acf3d467435f130/5C709C77/t51.2885-19/11351770_612904665516559_678168252_a.jpg",
  "photoUrlHD": "https://scontent-gru2-1.cdninstagram.com/vp/447ffd0262082f373acf3d467435f130/5C709C77/t51.2885-19/11351770_612904665516559_678168252_a.jpg",
  "posts": [
    {
      "id": "1430331382090378714",
      "shortcode": "BPZjtBUly3a",
      "caption": "If I have any active followers anymore; hello! I'm Brianna, and I created this account when I was just 12 years old to show my love for The Brain Scoop. I'm now nearly finished high school, and just rediscovered it. I just wanted to see if anyone is still active on here, and also correct some of my past mistakes - being a child at the time, I didn't realise I had to credit artists for their work, so I'm going to try to correct that post haste. Also; the font in my bio is horrendous. Why'd I think that was a good idea? Anyway, this is a beautiful artwork of the long-tailed pangolin by @chelsealinaeve . Check her out!",
      "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/ab823331376ca46136457f4654bf2880/5CAD48E4/t51.2885-15/e35/16110915_400942200241213_3503127351280009216_n.jpg",
      "photoWidth": 640,
      "photoHeight": 457,
      "thumbnails": [
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/43b195566d0ef2ad5f4663ff76d62d23/5C76D756/t51.2885-15/e35/c91.0.457.457/s150x150/16110915_400942200241213_3503127351280009216_n.jpg",
          "photoWidth": 150,
          "photoHeight": 150
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/ae39043a7ac050c56d741d8b4355c185/5C93971C/t51.2885-15/e35/c91.0.457.457/s240x240/16110915_400942200241213_3503127351280009216_n.jpg",
          "photoWidth": 240,
          "photoHeight": 240
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/ae7a22d09e3ef98d0a6bbf31d621a3b7/5CACBBA6/t51.2885-15/e35/c91.0.457.457/s320x320/16110915_400942200241213_3503127351280009216_n.jpg",
          "photoWidth": 320,
          "photoHeight": 320
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/1439dc72b70e7c0c0a3afcc30970bb13/5C8E2923/t51.2885-15/e35/c91.0.457.457/16110915_400942200241213_3503127351280009216_n.jpg",
          "photoWidth": 480,
          "photoHeight": 480
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/1439dc72b70e7c0c0a3afcc30970bb13/5C8E2923/t51.2885-15/e35/c91.0.457.457/16110915_400942200241213_3503127351280009216_n.jpg",
          "photoWidth": 640,
          "photoHeight": 640
        }
      ]
    },
    {
      "id": "442527661838057235",
      "shortcode": "YkLJBXJD8T",
      "caption": null,
      "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/dc94b38da679826b9ac94ccd2bcc4928/5C7CDF93/t51.2885-15/e15/11327349_860747310663863_2105199307_n.jpg",
      "photoWidth": 612,
      "photoHeight": 612,
      "thumbnails": [
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/c1153c6513c44a6463d897e14b2d8f06/5CB13ADD/t51.2885-15/e15/s150x150/11327349_860747310663863_2105199307_n.jpg",
          "photoWidth": 150,
          "photoHeight": 150
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/47e60ec8bca5a1382cd9ac562439d48c/5CAE6A82/t51.2885-15/e15/s240x240/11327349_860747310663863_2105199307_n.jpg",
          "photoWidth": 240,
          "photoHeight": 240
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/da0ee5b666ab40e4adc1119e2edca014/5CADCB59/t51.2885-15/e15/s320x320/11327349_860747310663863_2105199307_n.jpg",
          "photoWidth": 320,
          "photoHeight": 320
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/02ee23571322ea8d0992e81e72f80ef2/5C741048/t51.2885-15/e15/s480x480/11327349_860747310663863_2105199307_n.jpg",
          "photoWidth": 480,
          "photoHeight": 480
        },
        {
          "photoUrl": "https://scontent-gru2-1.cdninstagram.com/vp/dc94b38da679826b9ac94ccd2bcc4928/5C7CDF93/t51.2885-15/e15/11327349_860747310663863_2105199307_n.jpg",
          "photoWidth": 640,
          "photoHeight": 640
        }
      ]
    }
  ]
}

userid(pk)でデータを取得できますか
SAURABH RATHOD 2018

申し訳ありませんが@SAURABHRATHOD試してみましたが、これを行う方法が見つかりませんでした。誰かがこれを解決してくれたらとても嬉しいです。コメントをありがとう。
Ruan Barroso

2

私はこの機能を本当に必要としていましたが、Wordpressのためでした。私はフィットし、それは完璧に機能しました

<script>
    jQuery(function($){
        var name = "caririceara.comcariri";
        $.get("https://images"+~~(Math.random()*33)+"-focus-opensocial.googleusercontent.com/gadgets/proxy?container=none&url=https://www.instagram.com/" + name + "/", function(html) {
            if (html) {
                var regex = /_sharedData = ({.*);<\/script>/m,
                  json = JSON.parse(regex.exec(html)[1]),
                  edges = json.entry_data.ProfilePage[0].graphql.user.edge_owner_to_timeline_media.edges;
              $.each(edges, function(n, edge) {
                   if (n <= 7){
                     var node = edge.node;
                    $('.img_ins').append('<a href="https://instagr.am/p/'+node.shortcode+'" target="_blank"><img src="'+node.thumbnail_src+'" width="150"></a>');
                   }
              });
            }
        });
    }); 
    </script>

1

以下のnodejsコードは、人気のある画像をInstagramページから取得します。関数 'ScrapeInstagramPage'はポストエージング効果を処理します。

var request = require('parse5');
var request = require('request');
var rp      = require('request-promise');
var $       = require('cheerio'); // Basically jQuery for node.js 
const jsdom = require("jsdom");    
const { JSDOM } = jsdom;


function ScrapeInstagramPage (args) {
    dout("ScrapeInstagramPage for username -> " + args.username);
    var query_url = 'https://www.instagram.com/' + args.username + '/';

    var cookieString = '';

    var options = {
        url: query_url,
        method: 'GET',
        headers: {
            'x-requested-with' : 'XMLHttpRequest',
            'accept-language'  : 'en-US,en;q=0.8,pt;q=0.6,hi;q=0.4', 
            'User-Agent'       : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',
            'referer'          : 'https://www.instagram.com/dress_blouse_designer/',
            'Cookie'           : cookieString,
            'Accept'           : '*/*',
            'Connection'       : 'keep-alive',
            'authority'        : 'www.instagram.com' 
        }
    };


    function dout (msg) {
        if (args.debug) {
            console.log(msg);
        }
    }

    function autoParse(body, response, resolveWithFullResponse) {
        // FIXME: The content type string could contain additional values like the charset. 
        // Consider using the `content-type` library for a robust comparison. 
        if (response.headers['content-type'] === 'application/json') {
            return JSON.parse(body);
        } else if (response.headers['content-type'] === 'text/html') {
            return $.load(body);
        } else {
            return body;
        }
    }

    options.transform = autoParse;


    rp(options)
        .then(function (autoParsedBody) {
            if (args.debug) {
                console.log("Responce of 'Get first user page': ");
                console.log(autoParsedBody);
                console.log("Creating JSDOM from above Responce...");
            }

            const dom = new JSDOM(autoParsedBody.html(), { runScripts: "dangerously" });
            if (args.debug) console.log(dom.window._sharedData); // full data doc form instagram for a page

            var user = dom.window._sharedData.entry_data.ProfilePage[0].user;
            if (args.debug) {
                console.log(user); // page user
                console.log(user.id); // user ID
                console.log(user.full_name); // user full_name
                console.log(user.username); // user username
                console.log(user.followed_by.count); // user followed_by
                console.log(user.profile_pic_url_hd); // user profile pic
                console.log(autoParsedBody.html());
            }

            if (user.is_private) {
                dout ("User account is PRIVATE");
            } else {
                dout ("User account is public");
                GetPostsFromUser(user.id, 5000, undefined);
            }
        })
        .catch(function (err) {
            console.log( "ERROR: " + err );
        });  

    var pop_posts = [];
    function GetPostsFromUser (user_id, first, end_cursor) {
        var end_cursor_str = "";
        if (end_cursor != undefined) {
            end_cursor_str = '&after=' + end_cursor;
        }

        options.url = 'https://www.instagram.com/graphql/query/?query_id=17880160963012870&id=' 
                        + user_id + '&first=' + first + end_cursor_str;

        rp(options)
            .then(function (autoParsedBody) {
                if (autoParsedBody.status === "ok") {
                    if (args.debug) console.log(autoParsedBody.data);
                    var posts = autoParsedBody.data.user.edge_owner_to_timeline_media;

                    // POSTS processing
                    if (posts.edges.length > 0) {
                        //console.log(posts.edges);
                        pop_posts = pop_posts.concat
                        (posts.edges.map(function(e) {
                            var d = new Date();
                            var now_seconds = d.getTime() / 1000;

                            var seconds_since_post = now_seconds - e.node.taken_at_timestamp;
                            //console.log("seconds_since_post: " + seconds_since_post);

                            var ageing = 10; // valuses (1-10]; big value means no ageing
                            var days_since_post = Math.floor(seconds_since_post/(24*60*60));
                            var df = (Math.log(ageing+days_since_post) / (Math.log(ageing)));
                            var likes_per_day = (e.node.edge_liked_by.count / df);
                            // console.log("likes: " + e.node.edge_liked_by.count);
                            //console.log("df: " + df);
                            //console.log("likes_per_day: " + likes_per_day);
                            //return (likes_per_day > 10 * 1000);
                            var obj = {};
                            obj.url = e.node.display_url;
                            obj.likes_per_day = likes_per_day;
                            obj.days_since_post = days_since_post;
                            obj.total_likes = e.node.edge_liked_by.count;
                            return obj;
                        }
                        ));

                        pop_posts.sort(function (b,a) {
                          if (a.likes_per_day < b.likes_per_day)
                            return -1;
                          if (a.likes_per_day > b.likes_per_day)
                            return 1;
                          return 0;
                        });

                        //console.log(pop_posts);

                        pop_posts.forEach(function (obj) {
                            console.log(obj.url);
                        });
                    }

                    if (posts.page_info.has_next_page) {
                        GetPostsFromUser(user_id, first, posts.page_info.end_cursor);
                    }
                } else {
                    console.log( "ERROR: Posts AJAX call not returned good..." );
                }
            })
            .catch(function (err) {
                console.log( "ERROR: " + err );
            }); 
    }
}


ScrapeInstagramPage ({username : "dress_blouse_designer", debug : false});

ここで試してください

例:URL ' https://www.instagram.com/dress_blouse_designer/ 'が与えられた場合、関数を呼び出すことができます

ScrapeInstagramPage ({username : "dress_blouse_designer", debug : false});

最初の12件の投稿しか表示できませんが、それらすべてを取得するにはどうすればよいですか?
rahul gawale

0

これは、単純なajax呼び出しと画像パスの反復を使用して機能します。

        var name = "nasa";
        $.get("https://www.instagram.com/" + name + "/?__a=1", function (data, status) {
            console.log('IG_NODES', data.user.media.nodes);
            $.each(data.user.media.nodes, function (n, item) {
                console.log('ITEMS', item.display_src);
                $('body').append(
                    "<div class='col-md-4'><img class='img-fluid d-block' src='" + item.display_src + "'></div>"
                );
            });
        })

それは私にとってはうまくいきましたが、私がInstagramにログインしているときだけです。
ズンディ

-1

以下は、画像をダウンロードして画像へのリンクを含むhtmlファイルを作成するphpスクリプトです。phpバージョンの350Dを信用してください。これは詳細です。これはcronジョブであり、頻繁に実行することをお勧めします。2019年5月現在、動作確認済み

<?
$user = 'smena8m';
$igdata = file_get_contents('https://instagram.com/'.$user.'/');
preg_match('/_sharedData = ({.*);<\/script>/',$igdata,$matches);
$profile_data = json_decode($matches[1])->entry_data->ProfilePage[0]->graphql->user;
$html = '<div class="instagramBox" style="display:inline-grid;grid-template-columns:auto auto auto;">';
$i = 0;
$max = 9;
while($i<$max){
    $imglink = $profile_data->edge_owner_to_timeline_media->edges[$i]->node->shortcode;
    $img = $profile_data->edge_owner_to_timeline_media->edges[$i]->node->thumbnail_resources[0]->src;
    file_put_contents('ig'.$i.'.jpg',file_get_contents($img));
    $html .= '<a href="https://www.instagram.com/p/'.$imglink.'/" target="_blank"><img src="ig'.$i.'.jpg" /></a>';
    $i++;
}
$html .= '</div>';
$instagram = fopen('instagram.html','w');
fwrite($instagram,$html);
fclose($instagram);
?>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.