Fixed failing OSM login

The reason was that the format of the form values in response was changed by OSM developers.
TODO: Properly parse the web page response and extract proper permissions and form values
instead of hard-coding them.

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-07-02 17:12:58 +02:00 committed by Alexander Borsuk
parent 315ffa2cda
commit 00cf8f3ff4

View file

@ -216,10 +216,10 @@ string OsmOAuth::SendAuthRequest(string const & requestTokenKey, SessionID const
{"oauth_token", requestTokenKey},
{"oauth_callback", ""},
{"authenticity_token", sid.m_token},
{"allow_read_prefs", "yes"},
{"allow_write_api", "yes"},
{"allow_write_gpx", "yes"},
{"allow_write_notes", "yes"},
{"allow_read_prefs", "1"},
{"allow_write_api", "1"},
{"allow_write_gpx", "1"},
{"allow_write_notes", "1"},
{"commit", "Save changes"}
};
HttpClient request(m_baseUrl + "/oauth/authorize");