Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone 7 call history - Mango API

Am I able to get the current call history with the call number and DateTime details from the phone with the Mango API? I think it is not possible with the current one.

like image 922
Marko Avatar asked Jul 30 '11 12:07

Marko


2 Answers

There is no API to retrieve Call History. This is mainly due to privacy concerns and protecting the user from nefarious applications behaving badly on the device.

You will notice that among the API is a collection of Launchers and Choosers. One of which is the PhoneNumberChooser Task. This particular task launches the Contacts application and allows the user to physically select a contact number to dial from your application. You'll notice this requires a manual interaction from the user. Many of the data retrieval APIs require manual selection from the user, once again to protect the user from applications doing bad things. For example, trolling your contact list in the background and sending that data to a web service without the user's knowledge.

Special care was given to the API's to protect the user from these types of scenarios.

If you have feedback on the need for an API to provide a Call History Chooser, submit your feedback to http://wpdev.uservoice.com.

like image 135
Dave Bost - MSFT Avatar answered Nov 15 '22 08:11

Dave Bost - MSFT


If Marketplace screens apps for behavior, and if apps have to declare what they do, and if users have to opt in to allow an app to get access to this information, it would seem reasonable to give app developers and more importantly users the option to decide this. And if there is still fear about this, then the OS could pop up a user response screen to permit or deny the action when an app requests to do so. There are many applications that could benefit from knowing this information to save the user from having to enter information from the current call when it could be easy for them to permit an application to get the data.

like image 42
Ron Avatar answered Nov 15 '22 08:11

Ron