flutter-webrtc / dart-sip-ua

A dart-lang version of the SIP UA stack.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Format exception: Expected > but found end of file when setting fcm params in extraContactParams of ua setting

DeviArunaMurugan opened this issue · comments

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.