I started to work with android.app.DownloadManager and faced a problem.
By default, DM sending HTTP GET request to download file:
GET http://www.example.com/getfile HTTP/1.1
Cookie: id=sdfsdf;Max-Age=10800000;Path=/
Host: ___
Connection: Keep-Alive
User-Agent: AndroidDownloadManager Paros/3.2.13
Content-length: 0
But I need to send some data in request(e.g. json string)
Are there any ways to send HTTP POST request in DownloadManager