How to access SMS message streams from a Windows phone

I want to access all messages on a Windows phone and take a backup or make a copy on a PC / phone.

I searched for it but couldn't get it online.

Is there any API to achieve this.

This is only for Windows Phone OS 7.5 Mango.

+4
source share
2 answers

Unfortunately, there is no API for this.

But yesterday I found this: http://wpdev.uservoice.com/forums/110705-app-platform

You can vote there :) The page is connected to the apphub forum.

+6
source

There is currently no API that allows you to access custom SMS. Although there is a way to run the Messages application with the Body and To software filling.

Microsoft.Phone.Tasks provides you with various classes that allow your application to run any built-in application on a Windows phone, such as contacts application, sms application, email application, camera application, search application, etc.

The SMSComposeTask class is what you need to run the messaging application.

+3
source

Source: https://habr.com/ru/post/1392691/


All Articles