Adding users to the HUB through the Windows Store app

I want to write a Windows Store application that can add a contact to a contact concentrator. Fields are filled in automatically, and the user only needs to confirm the correctness of the data for adding a contact. I am developing in C #. Is there any other API? Or does anyone know of any other method so that I can do this?

+4
source share
1 answer

Yes, there are so many methods. What I'm doing: Try using the Live SDk in your application by including it from http://msdn.microsoft.com/en-us/library/live/hh826532 , and the link also contains enough code to get you started.

You can get contact information from there automatically and you can use the Roaming repository to store information or use any cloud storage if you want to update it based on multiple users.

0
source

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


All Articles