forked from organicmaps/organicmaps
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:
parent
315ffa2cda
commit
00cf8f3ff4
1 changed files with 4 additions and 4 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue