Linkedin has a feature that allows users to enter their outlook credentials and imports their outlook contacts.
I am trying to emulate this functionality, in a php application.
So far, the only way I have discovered on how this might be done is through Exchange web Services. https://emailhost/EWS/Services.wsdl
I am using the php-ews
library to try and connect to ews.
I was hoping for some sort of information on a defacto way to retrieve contacts given a users credentials, but have been unable to find much information on this at all.
Are there any other ways that this could be accomplished other than EWS? Does anyone know how linkedin is doing this?
/EWS/Services.wsdl
is part of EWS, and exchange server, is this the case? I am also pretty sure linkedin does not use outlook.com (outlook.com looks like it provides a number of nice apis for retrieving contact information (msdn.microsoft.com/en-us/library/live/hh826527.aspx). While linkedin requires user to enter email and password, and exchange server information to import contacts. Any info at all would be greatly – dm03514