是否有官方方法可以从雅虎的用户通讯录中导入联系人?
对于谷歌来说,它真的很简单:
import gdata
contacts_service = gdata.contacts.service.ContactsService()
contacts_service.email = email
contacts_service.password = password
contacts_service.ProgrammaticLogin()
query = gdata.contacts.service.ContactsQuery()
query.max_results = GOOGLE_CONTACTS_MAX_RESULTS
entries = contacts_service.GetContactsFeed(query.ToUri())
雅虎有这么简单的方法吗?
我找到了一些不使用 api 的解决方案,对于严肃的游戏来说看起来很奇怪 - 例如ContactGrabber。我在django-friends app中找到了需要 BBAuth Token 的解决方案。
但是,我想要从雅虎获取用户联系人的正式、清晰的方式。它存在吗?
UPD:最后,我避免使用 yahoo api,并出于我的目的使用django-openinviter。
但我仍在寻找使用 api 导入用户联系人的示例。