Hi Harsh, it seems you want to have the google contacts feature of adding bulk contacts through a csv file on your site, so you can add bulk contacts automatically.
Unfortunately, the Google Contacts API does not provide a method to ingest CSV files and get them automatically inserted in Google account. Instead, you should do the transformation from CSV into the XML (or ATOM) feed that Google Contact protocol needs, or get the CSV and insert, line by line, using the Google Contact client API for java. Best place to know about this is here: http://code.google.com/apis/contacts/docs/3.0/developers_guide_protocol.html#Batch Specifically I guess you are interested in "Batch processing". The most tricky thing with this protocol, as with many others from Google, is Authentication. See here: http://code.google.com/apis/contacts/docs/3.0/developers_guide_protocol.html#Auth Hope this helps, Eduardo G. -- You received this message because you are subscribed to the Google Groups "Google Contacts, Shared Contacts and User Profiles APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://code.google.com/apis/contacts/community/forum.html
