How to create URL with phone number for SIP call on pjsua util?

97 Views Asked by At

I'm trying to make a SIP call from PC to phone number over SIP server (sip.telnyx.eu) via pjsua cli utility. I can't solve correct syntax for it.

I've call pjsua util execution with config file and my setting. And looks like success to register on server but I can't make a call to specific phone number. My config file has the following structure:

--id sip:[email protected]:port
--registrar sip:sip.telnyx.eu
--realm *
--username user
--password password
--add-budy sip:[email protected]

So I'm not definitely sure that --add-budy should consist of specific phone number URL, but looks like this (please correct my case if it doesn't). I've wrong syntax on --add-budy. I can check it via

wrong

pjsua --add-budy sip:[email protected]
pjsua_app_config.c !Argument "--add-budy" is not valid. Use --help to see help

wrong

pjsua --add-budy sip:[email protected]
pjsua_app_config.c !Argument "--add-budy" is not valid. Use --help to see help

wrong

pjsua --add-budy sip:[email protected]
pjsua_app_config.c !Argument "--add-budy" is not valid. Use --help to see help
2

There are 2 best solutions below

0
On

I've found alternative solution. Need to past URL at the end of CLI args. Like this:

pjsua --config-file call.cfg sip:[email protected]
0
On

I guess the URI verification step is failing ; the message "is not valid" is explicit but unhelpful.

If it is not a bug (who knows!) then it is certainly a strict sip URI validation process so you should provide a conforming uri.

phone number mapping either tel or sip uri scheme:

tel:47-000-000-00 or sip:[email protected];user=phone

a regular email style sip uri:

   sip:[email protected]

A enhanced uri with display name:

"Bob" <sip:[email protected]>