yahoo のユーザー アドレス帳から連絡先をインポートする公式の方法はありますか?
Google の場合、次のように非常に簡単です。
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())
yahooでこんなに簡単な方法はありますか?
APIを使用せず、深刻なゲームには奇妙に見えるいくつかのソリューションを見つけました-たとえば、ContactGrabber。django-friends appで BBAuth Token を必要とするソリューションを見つけました。
しかし、yahoo からユーザーの連絡先を取得するための公式で明確な方法が必要です。存在しますか?
UPD: 最後に、yahoo api の使用を避け、目的のためにdjango-openinviterを使用しています。
しかし、API を使用してユーザーの連絡先をインポートする例をまだ探しています。