3

I am using Google Contact API which sends contact details in XML format, Is there any way to get the same response in JSON format.

My request URL :

https://www.google.com/m8/feeds/contacts/default/full?format=json

This is how I am trying now but its not working even after adding format=json I am getting XML rewsponse.

DCoder
  • 3,486
  • 7
  • 36
  • 68

1 Answers1

4

to get json response we have to use alt instead of format

https://www.google.com/m8/feeds/contacts/default/full?alt=json

DCoder
  • 3,486
  • 7
  • 36
  • 68