2018-06-14, 22:00
I'm trying to understand the changes, hopefully i can get some help here. This was working perviously:
wget http://username:[email protected]:808...pc?request={"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"Incoming Call from:","message":" ${URIENCODE(${CALLERID(name)})} ${CALLERID(number)} ","displaytime":15000,"image":"/storage/phone.jpg"},"id":1}"
This would cause the anyone calling to show up on the screen with a phone next to it. and was a convenient feature so we could decide if we should go get our phone when watching a movie or call back later.
If I understand correctly we have to post, and this can be done (linux) by calling
curl --data "request={"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"Incoming Call from:","message":" ${URIENCODE(${CALLERID(name)})} ${CALLERID(number)} ","displaytime":15000},"id":1}" "http://username:[email protected]:8080"
but I must have something wrong, any help would be appreicated
wget http://username:[email protected]:808...pc?request={"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"Incoming Call from:","message":" ${URIENCODE(${CALLERID(name)})} ${CALLERID(number)} ","displaytime":15000,"image":"/storage/phone.jpg"},"id":1}"
This would cause the anyone calling to show up on the screen with a phone next to it. and was a convenient feature so we could decide if we should go get our phone when watching a movie or call back later.
If I understand correctly we have to post, and this can be done (linux) by calling
curl --data "request={"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"Incoming Call from:","message":" ${URIENCODE(${CALLERID(name)})} ${CALLERID(number)} ","displaytime":15000},"id":1}" "http://username:[email protected]:8080"
but I must have something wrong, any help would be appreicated