igdownloader / InstagramDownloader

Firefox and Chrome Extention which creates an download button for instagram images and videos and videos
https://huiibuh.github.io/InstagramDownloader/
792 stars 151 forks source link

The downloaded name is not prefixed by user id. #322

Open alan23273850 opened 2 years ago

alan23273850 commented 2 years ago

To Reproduce Steps to reproduce the behaviour:

  1. Go to URL 'https://www.instagram.com/stories/xrspace.official/'
  2. Click on 'the download button on the top right corner'
  3. See error: The downloaded name is 'unknown_xxx'

Expected behaviour The downloaded name should be '{expected_user_id}_xxx'

Screenshots

image

Device (please complete the following information):

dutchcube commented 2 years ago

Also having this issue for a while now. A fix would be amazing! Thanks for the work.

ilovescraperz commented 2 years ago

Yup been having the same issue, including stories. For stories it's been since at least August 18th

Allen-Kwan commented 2 years ago

I assume it's something here, but hopefully someone can maybe make a PR or something to fix it.

`

    const accountName: HTMLHeadingElement | null = document.querySelector(QuerySelectors.accountName);

    const downloadMessage: DownloadMessage = {
        imageURL: [image.src],
        accountName: accountName?.innerText || 'unknown',
        type: DownloadType.single,
    };
    await browser.runtime.sendMessage(downloadMessage);`
alan23273850 commented 2 years ago

@Allen-Kwan You can simply do it!

Runningrock24 commented 2 years ago

This can't be solved?

ForAnAngel731 commented 1 year ago

This doesn't seem to have been fixed.

Allen-Kwan commented 1 year ago

@TomK32 - anyway you could make installation packages for Chrome/Firefox with your update?

TomK32 commented 1 year ago

@Allen-Kwan I'm afraid it's @HuiiBuh who has to upload those packages.

alan23273850 commented 1 year ago

I've found that https://chrome.google.com/webstore/detail/story-saver/mafcolokinicfdmlidhaebadidhdehpk is a useful alternative to this one. Have fun with it!

Allen-Kwan commented 1 year ago

@Allen-Kwan I'm afraid it's @HuiiBuh who has to upload those packages.

@TomK32 Ah, okay - I saw that you had mentioned being able to package up the files and manually install the extension yourself in another thread. I tried to do that myself, but it failed, and I was wondering if you might be able to show how to do that?