If your Lizmap Web Client uses SAMLv2 with the module saml
to authenticate the users, you need to force the gobsapi module
to use another driver, for example ldapdao.
The SAML protocol is based on URL redirections,
which are not suitable for the G-Obs API end point.
You can override the configuration to force the gobsapi.php entry point
to use another driver. To do so, you must first edit
the file lizmap/var/config/localconfig.ini.php
and change the content of the following sections:
Then you are ready to test. For example with curl (you need curl to pass JWT token in Authorization header).
Full API Documentation is available: https://docs.3liz.org/lizmap-gobsapi-module/api/
# login# we get the authentication TOKEN variable by first log the user inTOKEN=$(curl-s-XGET-H'Content-Type: application/json'"$BASEURL/user/login?username=gobsapi_writer&password=al_password"|jq-r'.token')&&echo$TOKEN# OR# we can use Basic authentication to avoid using username & password in the URLTOKEN=$(curl-s-XGET-H'Content-Type: application/json'-u"gobsapi_writer:al_password""$BASEURL/user/login"|jq-r'.token')&&echo$TOKEN
returns the token, for example
1
dacf5135c6686417c3916a649adbd146
Get the user projects
123
# User Projects# we use the $TOKEN variable in the Authorization headerecho$(curl-XGET-H'Accept: application/json'-H"Authorization: Bearer ${TOKEN}"$BASEURL/user/projects)
Get the observation of a given indicator between two dates
123
# getObservationsByIndicator# between seven days ago and nowecho$(curl-XGET-H'Accept: application/json'-H"Authorization: Bearer ${TOKEN}"-H"lastSyncDate: $(date'+%Y-%m-%d %H:%M:%S'-d'7 days ago')"-H"requestSyncDate: $(date'+%Y-%m-%d %H:%M:%S')"$BASEURL/project/test_project_a/indicator/hiker_position/observations)
returns all the matching observations.
Get the deleted observation on the server between two dates
You can activate the debug mode by manually editing the configuration file lizmap/var/config/gobsapi.ini.php
and modify the variable log_api_calls' with thedebug` value:
12
[gobsapi]log_api_calls=debug
You will then be able to see the API calls log written in the file lizmap/var/log/messages.log
1
tail-flizmap/var/log/messages.log
Messages will be like
1234567
2021-02-09 17:18:52 127.0.0.1 default GOBSAPI - ################
2021-02-09 17:19:05 127.0.0.1 default GOBSAPI - path: getProjectByKey
2021-02-09 17:19:05 127.0.0.1 default GOBSAPI - input_data: {"projectKey":"lizmapdemo~a_fake_project","module":"gobsapi","action":"project:getProjectByKey"}
2021-02-09 17:19:05 127.0.0.1 default GOBSAPI - http_code: 404
2021-02-09 17:19:05 127.0.0.1 default GOBSAPI - status: error
2021-02-09 17:19:05 127.0.0.1 default GOBSAPI - message: The given project key does not refer to a known project
2021-02-09 17:19:05 127.0.0.1 default GOBSAPI - ################