How to import email contacts the same way as twitter is doing?
Is there a standard way to let the website user import his email contacts in an asp.net MVC website?
Twitter use a secure way to let the user import his contacts, which is letting the user put his username and password inside the email service not in twitter.
Such as opening a popup for gmail to login there then return back to twitter with the contacts.
I used some libraries which import the contacts but with asking the user to put his username and password in the website then it get the contacts, which will is not secure from the user point of view.
So my question is: is there a ready solution for importing contacts from gmail, aol, 开发者_如何学运维yahoo the same way as twitter is doing?
Most of products you listed support OpenID. It is secured way how to get user's digital identity.
To get emails, you need use OAuth to get authorized access to protected items (emails)
Try this library
http://contactgrabber.stescodes.com/
it uses openauth basically.
精彩评论