web-dev-qa-db-ja.com

Instagramプロフィール写真を取得する方法?

Android?)でinstagram APIを使用してInstagramプロフィール写真を抽出する方法、または他の方法でInstaプロフィール写真を抽出する方法

5
user9717489

これらのURLのいずれかを使用

注:Instagramユーザーidを取得するには、Instagramで最初のURLを使用してくださいusername

12
Chhaileng

プロフィール写真を取得するには、次の関数を使用します。

function getPhoto(a) {
  
  // validation for instagram usernames
  var regex = new RegExp(/^(?!.*\.\.)(?!.*\.$)[^\W][\w.]{0,29}$/);
  var validation = regex.test(a);

  if(validation) {
  
    $.get("https://www.instagram.com/"+a+"/?__a=1")
    .done(function(data) { 

      // getting the url
      var photoURL = data["graphql"]["user"]["profile_pic_url_hd"];

      // update img element
      $("#photoReturn").attr("src",photoURL)
     
     })
    .fail(function() { 
      // code for 404 error 
      alert('Username was not found!')
    })
  
  } else {
  
    alert('The username is invalid!')
  }

}

    
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<img src="" id="photoReturn">

<br><br>

<input type="text" id="usernameInput">

<button onclick="getPhoto($('#usernameInput').val().trim())">Get profile photo</button>
4
Rodrigo Vieira

Instagram APIユーザーエンドポイントhttps://api.instagram.com/v1/users/{user-id}/?access_token=ACCESS-TOKEN)次のような応答を受け取ります。

{
    "data": {
        "id": "1574083",
        "username": "snoopdogg",
        "full_name": "Snoop Dogg",
        "profile_picture": "http://distillery.s3.amazonaws.com/profiles/profile_1574083_75sq_1295469061.jpg",
        "bio": "This is my bio",
        "website": "http://snoopdogg.com",
        "counts": {
            "media": 1320,
            "follows": 420,
            "followed_by": 3410
        }
}

これを使用して、プロフィール写真を取得できます。

0
Ishara Madhawa