Questions tagged [download-manager]

A download-manager is often used for handling long-running downloads, and might support pausing, interrupting and resuming.

The download manager will conduct the download in the background, taking care of HTTP interactions and retrying downloads after failures or across connectivity changes and system reboots.

465 questions
0
votes
1 answer

APK File not usable after download

I have a delicate Problem. I've built an App with an updatebutton. This almost has to download new apk files from a server. The App is not part of the play store, it is an closed system for our customers. I am able to download via Chrome browser an…
0
votes
1 answer

Trouble with implementation of download code redeemer

I'm designing a website for a small indie record label and they've dropped a bombshell asking if I could implement a function where a user can enter a code to receive a digital download. Is there a simple solution to doing this? I was thinking all I…
Bantros
  • 295
  • 8
  • 17
0
votes
0 answers

why download managers support only http/1.1?

I'm developing a download manager in javascript with ability to download a file in multiple parallel threads (like most other downloaders) and I noticed when I download a file over http2/http3 I get slow speed, but when I download the same file over…
0
votes
0 answers

How can we get Cancel button listener from system generate notification by DownloadManager?

I try to identify Cancel button listener in system level generate notification by DownloadManager. But i am not getting that listener. Here is my code : Thread { var complete: Boolean = true while (complete) { val cursor: Cursor? =…
0
votes
0 answers

I need to create a tiktok video Downloader

I'm trying to create a tiktok downloader, So i'm trying to download videos from the video id , x = int(input("Enter an integer >>>")) R = print(f"https://api16-normal-useast5.us.tiktokv.com/aweme/v1/aweme/detail/?aweme_id={x}") i use this code to…
0
votes
0 answers

How to send multiple links to IDM (Internet download manager)?

I'm trying to send a couple of links to IDM like what it's extension does on browsers, but I don't know the command line related to it. All I know is that I can send a single link like this: string idmpath = @"C:\Program Files (x86)\Internet…
0
votes
1 answer

Download Manager for downloading a file in typo3 version 7.6.20

I have typo3 version 7.6.20 with php 7.3.26 and would provide a file for downloading only for registrated users. What will be the best way. This ext Download Manager tells me, that my PHP version is to high. And that ext secure download causes my…
Walter Schrabmair
  • 1,251
  • 2
  • 13
  • 26
0
votes
0 answers

Is it possible to programmatically cancel an ongoing package installing that I've initiated with PackageInstaller?

I have an app that lets users download an apk fetched through a url, and they can cancel its download via the DownloadManager API in Android, I've been wondering if the PackageInstaller API has a method like the DownloadManager's remove(), which…
0
votes
1 answer

Automate Seedbox Downloads to Linux Box

I currently have a seedbox overseas (using rutorrent), which has RSS setup to automatically download TV shows from a private tracker. I want to setup an automated downloader from the Seedbox to my Linux server (which has XBMC on it). Once a torrent…
Benny
  • 103
  • 1
  • 1
  • 6
0
votes
2 answers

Pausing a request for a Download Manager for iphone

I am writing a utility that allows users to download large files from my server. I need the user to have the flexibility to pause and resume a download request through a button click. I am using ASIHTTPRequest library, however it doesn;t provide any…
0
votes
1 answer

How to download files from file hosting services like Rapidshare.com, DepositFiles.com

I'm looking to build a downloader application that downloads files from file-hosting services. What are the steps necessary to satisfy this requirement? E.g. user adds the shared file URL and download manager should transfer the file to a local…
SharpAffair
  • 5,558
  • 13
  • 78
  • 158
0
votes
1 answer

Download a file from different url if the current url fails without restarting from beginning

i have an api which returns the url of a file that i want to download, but the link expires after 10-15 min so when the link dies is there anyway to change the dead url and download it from a new one, and resume the download where it left off,…
0
votes
0 answers

Resume downloading from a certain position

I need to download the file after a pause. But I do not know how to implement it correctly using https://github.com/yhirose/cpp-httplib . But the problem is that when the download resumes, the server starts sending me the file first. Question: how…
0
votes
0 answers

Download files from webview which need user to log in

I am new to android development and I am trying to make a webapp for my website. I am stuck at downloading files. The user needs to be log in for accessing some pdf files. How can I download files from a website which is accessible only to…
0
votes
0 answers

Download PDF Files in Android WebView

I am using webview for showing my website to my users. The user needs to login to access files from my websites. Most of the files are in pdf format. But I noticed that the files not downloading properly and the files downloaded are just in html…