json 如何获取Instagram个人资料图片?[关闭]

bxgwgixi  于 2023-05-23  发布在  其他
关注(0)|答案(3)|浏览(193)

已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。

3年前关闭。
Improve this question
如何在Android中使用Instagram API提取Instagram个人资料图片?或任何其他方法来提取Insta个人资料图片?

insrf1ej

insrf1ej1#

到2023年5月,要通过API获取Instagram个人资料URL,请使用以下命令:
https://www.instagram.com/USERNAME/?__a=1&__d=1

cbwuti44

cbwuti442#

要获取个人资料照片,请使用以下功能:

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>
yacmzcpb

yacmzcpb3#

使用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
        }
}

使用这个你可以得到个人资料图片。

相关问题