adrian / upm-android

Android version of Universal Password Manager.
http://upm.sourceforge.net/
76 stars 46 forks source link

UPM is incorrectly using HTTP post to download the DB file #19

Open ghost opened 11 years ago

ghost commented 11 years ago

According to the W3C specification, POST is used for making changes on the server, not for fetching content (especially static content). UPM is incorrectly using POST to try to fetch the initial DB download, which is causing failures for web servers which (correctly) disallow POST for fetching static content (such as nginx).

UPM Android should use GET to fetch static content.

adrian commented 11 years ago

Bug confirmed. Thanks for that.