Is there are official way to import contacts from user address book from yahoo?

For google it's really simple as:

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())

Is there such simple way for yahoo?

I found some solutions, that don't use api and looks strange for serious game - for example ContactGrabber. I found solutions, that require BBAuth Token in django-friends app.

But, I want official, clear, way to grab user contacts from yahoo. Does it exists?

UPD: Finally I am avoiding use of yahoo api, and using django-openinviter for my purposes.

But I am still looking for examples of importing user contacts using api.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted
+50

The Contacts REST API is pretty straight-forward. The URL that you're after is

http://social.yahooapis.com/v1/user/{guid}/contacts.json

Here is a script that will extract things for you. You can expand this to include authentication.

import urllib2
import json

def get_contacts(guid):
    url = 'http://social.yahooapis.com/v1/user/{}/contacts.json'.format(guid)
    page = urllib2.urlopen(url)
    return json.load(page)['contacts']['contact']
link|improve this answer
Thanks! Can you improve your solution and tell, how to get guid? – Nikolay Fominyh Oct 20 '11 at 8:21
You can get a user's guid by making an HTTP GET request to social.yahooapis.com/v1/me/guid when the user is logged in. See developer.yahoo.com/social/rest_api_guide/… – Tim McNamara Oct 20 '11 at 10:10
Thanks for help. – Nikolay Fominyh Oct 20 '11 at 11:45
This was a big help! Thanks. I didn't realize they had this API and the YQL API (which was much harder to use). I think you need to leave off the ".json" at the end and replace it with "?format=json" though. – Ben McCann Jan 26 at 0:52
feedback

Yahoo has some decent documentation on how to access its APIs with Python here. The information there will tell you how to access Yahoo APIs by YQL with http requests. This means directly performing the http GETs and POSTs and parsing the results yourself. However, they also have a python library that wraps those calls here, but it has not been updated since 10/13/2009, so your mileage may vary.

link|improve this answer
Killed one more hour on these docs. Is there any simple way? – Nikolay Fominyh Oct 7 '11 at 13:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.