can't get instagram profile picture full size

妖精的绣舞 提交于 2021-02-06 09:29:06

问题


a few days ago i was able to fetch inta profile pic in my android app by remove vp/ from the pic URL and change the resolution from s150x150 to s720x720 for exp ,and it worked fine but now i still get "invalid url signature" , so i think instagram has added signature to their url ,I usually remove the parte from vp/ to /t51 in the pic URL... like this

https://scontent-mxp1-1.cdninstagram.com/vp/xxxxxxxx/t51....jpg
but it doesn't work !!

I don't know what's happened with instagram,so can someone help meto find a solution for this problem? Or an alternate method . Thanks


回答1:


Here's how to do it as of May 2020 without an external website like https://www.instadp.com/. Programs can also use this API method.

  • First, make sure you are logged into an Instagram account on the browser that you want to do this.

  • Enter a username in place of "usernamehere" in this URL:

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

  • Visit the URL.

  • Copy the number after "profilePage_" at the start. This is the userID. (It is also located under graphql.user.id in the JSON.)

  • Paste the number in this URL in place of "numberhere"

https://i.instagram.com/api/v1/users/numberhere/info/

  • Visit the URL. You will most likely see {"message": "useragent mismatch", "status": "fail"}. If you do, perform the following steps:

  • If you are in Chrome, press F12 or Ctrl+Shift+I or Ctrl+Shift+J to open DevTools.

  • In the bottom draw (where you see "Console", "What's New", Network conditions"), click "Network conditions".

  • Under "User agent", uncheck "Select automatically".

  • Select "Custom...", and paste an Instagram mobile user agent into the box, like this one:

Mozilla/5.0 (Linux; Android 9; GM1903 Build/PKQ1.190110.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/75.0.3770.143 Mobile Safari/537.36 Instagram 103.1.0.15.119 Android (28/9; 420dpi; 1080x2260; OnePlus; GM1903; OnePlus7; qcom; sv_SE; 164094539)

 You can find more [here][3].
  • Do not close DevTools. Refresh the page.

    Note: there are browser extensions that can do this.

    Check this tutorial for how to do this on other browsers.

  • Press Ctrl+F, and search for "hd_profile_pic_url_info".

  • Copy the URL between "url" and "width". It's a long one, so look carefully. (It is located under user.hd_profile_pic_url_info.url in the JSON.)

Note: extensions like this one will make this part so much easier.

  • Paste the URL in the address bar, but don't press Enter.

  • Look for all instances of "\u0026" in the URL. There should be about 3 of them, in the second half of the URL. These are the JavaScript codes for "&", but they won't work in an address bar URL (you will see Bad URL timestamp if you press Enter). Replace them all with "&".

  • Visit the URL.

Now you have your full-resolution profile picture. :)

UPDATE: Finally got round to writing a function to get this URL. You can use this in your browser, instead of having to go through all those steps.

async function fetchIGProfilePic(input) {
    if (!/^https?:\/\/i.instagram.com\//.test(window.location.href)) {
        if (window.confirm('fetchIGProfilePic:\n\nWe need to navigate to i.instagram.com for the request to work. (We need to make the request from the same domain as the profile pic API; CORS policy.) Please run the script after doing this.\n\nNavigate to i.instagram.com? (Ignore the 404 error.)')) {
            window.location.href = 'https://i.instagram.com/api/v1/';
            return;
        } else {
            return 'fetchIGProfilePic: Cancelled.';
        }
    }
    let response;
    let output;
    try {
        response = await fetch('https://www.instagram.com/' + input + '/?__a=1');
        if (!response.ok) {
            console.log('Failed 1st step, to fetch userID, with bad response status:' + response.status);
            return;
        }
    } catch(error) {
        console.log('Failed 1st step, to fetch userID, with ok response status: ' + error);
        return;
    }
    let userData = await response.json();
    try {
        response = await fetch('https://i.instagram.com/api/v1/users/' + userData.graphql.user.id + '/info/', {
            // The following doesn't seem to be necessary in a console request, but I kept it in in case you have issues at this stage.
            headers: {'user-agent': 'Mozilla/5.0 (Linux; Android 9; GM1903 Build/PKQ1.190110.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/75.0.3770.143 Mobile Safari/537.36 Instagram 103.1.0.15.119 Android (28/9; 420dpi; 1080x2260; OnePlus; GM1903; OnePlus7; qcom; sv_SE; 164094539)'
            }
        });
        if (!response.ok) {
            console.log('Failed 2nd step, to fetch profile pic URL, with bad response status: ' + response.status);
            window.alert('fetchIGProfilePic:\n\nYou might not be logged in, which is necesary for the request to work. Please log into an Instagram account, then run this script again.');
            return;
        }
    } catch(error) {
        console.log('Failed 2nd step, to fetch profile pic URL, with ok response status: ' + error);
        return;
    }
    let profileData = await response.json();
    console.log('Full-size profile pic URL of ' + input + ':\n' + profileData.user.hd_profile_pic_url_info.url);
}

fetchIGProfilePic('instagram'); // Enter the username here.

In your browser, press F12 to open the console, then paste the script in. You put the username in the bottom brackets, then press Enter, and it retrieves the URL in the console. Make sure you are on https://i.instagram.com/api/v1/ and logged into an Instagram account when you run the script.



来源:https://stackoverflow.com/questions/48662940/cant-get-instagram-profile-picture-full-size

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!