You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of go-osmand-tracker uses GET instead of POST, so it is not a correct REST-y way to receive location updates, but the OsmAnd uses GET requests for location updates, so that's why GET is used.
go-osmand-tracker should accept both GET (for backward compatibility) and POST (with a JSON body) in the future.
Operation
HTTP
SQL
DDS
Create
PUT / POST
INSERT
write
Read
GET
SELECT
read / take
Update
PUT / PATCH
UPDATE
write
Delete
DELETE
DELETE
dispose
The text was updated successfully, but these errors were encountered:
The current version of
go-osmand-tracker
uses GET instead of POST, so it is not a correct REST-y way to receive location updates, but the OsmAnd uses GET requests for location updates, so that's why GET is used.go-osmand-tracker
should accept both GET (for backward compatibility) and POST (with a JSON body) in the future.The text was updated successfully, but these errors were encountered: