dart-sip-ua
dart-sip-ua copied to clipboard
Format exception: Expected > but found end of file when setting fcm params in extraContactParams of ua setting
I have included the registerParms in ua setting as below,
settings.registerParams.extraContactParams = <String, String>{ 'pn-provider': 'fcm', 'pn-param': Project id, 'pn-prid': fcm token }
but received the above exception when receiving the incoming call. Anyone faced this exception. If so how to resolve this?
@cloudwebrtc : As this is urgent, can you provide any update on this?
Don't know if this will help but I created a map with the parameters as you have. However I add them to the extraContactParams.
uaSettings.registerParams.extraContactUriParams.addAll(pushParams);
This works for me.