| ... | ... | @@ -10,6 +10,10 @@ This method starts performing routines that are defined in `notifier.py` |
|
|
|
* `iid_key`: FCM Client ID (or as google calls it "Instance ID")
|
|
|
|
* `apikey`: This is optional, required only if apikey check is turned on in `notifier.py`. (Can also be checked from client using a GET request to `/`, find JSON object `details`, and its boolean `apikey_required`)
|
|
|
|
|
|
|
|
|
|
|
|
##### Wilma Session (`session`):
|
|
|
|
Wilma Session is a cookie (`Wilma2SID=f91a3ffb7ecf9d9db622a485338cb646;`). API needs only cookie's value, nothing else. I recommend using this regex to extract that: `^(.*)Wilma2SID=([^;]+)(.*)$`, and group 2 is the value.
|
|
|
|
|
|
|
|
#### Response:
|
|
|
|
`200 OK`
|
|
|
|
````
|
| ... | ... | |