i trying live emails wp app
is possibly emails our app, getting email address , date of birth , other not getting email's
my xaml code
<live:signinbutton clientid="000000004c0fwd99" scopes="wl.basic wl.offline_access wl.signin wl.contacts_birthday wl.emails" branding="windows" texttype="login" d:layoutoverrides="verticalalignment" sessionchanged="signinbutton_sessionchanged" /> c#
private void signinbutton_sessionchanged(object sender, microsoft.live.controls.liveconnectsessionchangedeventargs e) { if (e != null && e.session != null && e.status == liveconnectsessionstatus.connected) { this.liveclient = new liveconnectclient(e.session); session = e.session; this.loginin(); } else this.getuserprofile(); } private void getuserprofile() { liveconnectclient clientgetme = new liveconnectclient(session); clientgetme.getcompleted += new eventhandler<liveoperationcompletedeventargs>(clientgetme_getcompleted); clientgetme.getasync("me", null); liveconnectclient clientgetpicture = new liveconnectclient(session); clientgetpicture.getcompleted += new eventhandler<liveoperationcompletedeventargs>(clientgetpicture_getcompleted); clientgetpicture.getasync("me/picture"); } how can email's with subject, address , mail content
is possibly
it's not possible. interaction contacts , calendars possible.
you can use live connect apis following things in hotmail:
- create new contacts, , read existing ones, in user's contacts list.
- create, read, update, , delete user's calendars , calendars' associated events.
- subscribe user public calendar, such list of holidays.
- use friend finder feature discover whether of users' contacts registered users of website.
from: live sdk developer guide
Comments
Post a Comment