New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't answer after quitting #542
Comments
|
That's because you are using push notification with data. |
|
My understanding is that a push with type FWIW, this Here's the documentation on
Interesting that your implementation uses neither But nn that push body, what is |
|
The android app does nothing with the push itself, it simply starts the LinphoneService and a Core it there is not one already. We assume that if there was already a Service, it would have received the INVITE through the socket. |
|
So what is the |
|
As documented in https://github.com/BelledonneCommunications/flexisip/blob/8a28ba7e7ebb7894d9059121266eea76f31ba69c/src/pushnotification/pushnotification.hh: |
|
What are the ramifications of not including it in the push API request? |
|
Actually none, as I told you we don't read what's inside the push, we just want the information that a push has been received. |
|
So why does your reference implementation put the uuid in the push? It must serve some purpose doesn't it? |
|
I think it was used at some point, but we don't need it anymore. |
According to #538 Linphone is supposed to still answer the phone after quitting if push is enabled.
This doesn't seem to be working on feature/release-4.1. After quitting Linphone, and then calling the device, I see the push being sent from the FCM servers but Linphone is not started up to answer it.
Perhaps this is related to the push content that is being sent to the FCM servers?
My push contains the following data:
{ "to":"[redacted]", "data":{ "body":"incoming call" } }and I get back:
{ "multicast_id":[redacted], "success":1, "failure":0, "canonical_ids":0, "results":[ { "message_id":"0:[redacted]%[redacted]" } ] } This all works while Linphone is running, just not after it has quitted.The text was updated successfully, but these errors were encountered: