I\'ve written code that uses Angular $http to download a file. The name of the file is not specified in the URL. The URL contains a unique identifier for the file, wh
Maybe you already find solution, but I will post this answer if someone else has this problem.
Add these parameters in the success callback function from the $http request:
$http.get(myUrl).success(function (data, status, headers, config) {
// extract filename from headers('Content-Disposition')
});