Languages

Menu
Sites
Language
make a call

hello
Tell me, please, how can I make a call?

$("#call").click( function(){
    //call
});

 

Responses

12 Replies
Raghu Kona

Hi Fedor,

Tizen Web programming does not provide Telephony APIs currently. You can make use of the Native support https://developer.tizen.org/dev-guide/2.2.1/org.tizen.native.appprogramming/html/guide/telephony/telephony.htm

Regards,

Raghu Kona

Alexander AVSukhov

Hello,

You may use appControl with http://tizen.org/appcontrol/operation/call operation.

Fedor Efimenko
var phone = "89111111111";    	
var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/call", phone);
		tizen.application.launchAppControl(appControl, null,
		function(){console.log("launch appControl succeeded");},
		function(e){console.log("launch appControl failed. Reason: " + e.name);} );

why it does not work?

 

config:

<tizen:privilege name="http://tizen.org/privilege/application.launch"/>

Fedor Efimenko

sorry

var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/call", 'tel:' + phone);

so works

Gökhan Kurt

Did you try it on Wearable SDK and Gear 2

A M

doesn't work for me on gear2.

Zoltan Puski
You tried on a real device or on the emulator?
A M

On a real device.

AVSukhov

Hello,

If you just want to link to call you can try to use 

<a href="tel:+123456789">Call</a>

Vahe Evoyan

Anyone found any solution for this? I use 1.0.0 with Gear2 an no success.

Zoltan Puski

There must be a way to do this, but I could not figure out. The built-in Tizen dialer does this, so there must be a way.

Using AppControl returns NotFoundError

Using <a href="tel:+123456789"> simple does nothing.

 

AVSukhov

Hello,

Try to add "call" privilege