https://github.com/paule96/azurefunctiondownloader
A Azure Function you can send http url's of files that put it in a zip Archiv.
https://github.com/paule96/azurefunctiondownloader
azure azure-functions azurefunctions dotnet-core downloader functional-programming zip
Last synced: about 2 months ago
JSON representation
A Azure Function you can send http url's of files that put it in a zip Archiv.
- Host: GitHub
- URL: https://github.com/paule96/azurefunctiondownloader
- Owner: paule96
- License: mit
- Created: 2018-04-29T11:41:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T19:55:48.000Z (over 7 years ago)
- Last Synced: 2025-03-17T16:55:19.675Z (over 1 year ago)
- Topics: azure, azure-functions, azurefunctions, dotnet-core, downloader, functional-programming, zip
- Language: C#
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AzureFunctionDownloader
An Azure Function which takes urls of files and generate a downloadable zip archive out of them.
# Getting started
After you have deployed the function you can use it like the following HTTP GET request:
```
https://yourfunctionurl/api/Downloader?filenameInZip.exe=https://urltofile/file.exe
```
The function also supports POST. When using POST your HTTP Body needs to be set to application/json and should contain the values like this:
```json
[
{
"Key": 'filenameInZip.exe',
"Value": 'https://urltofile/file.exe'
}
]
```
The URL for Post are:
```
https://yourfunctionurl/api/Downloader
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details