Please refer this Link
This API Call passes the location in request, and get the response with the details in JSON/XML
eg : Request
https://maps.googleapis.com/maps/api/timezone/json?location=39.6034810,-119.6822510×tamp=1331161200&key=YOUR_API_KEY
Response
{
"dstOffset" : 0,
"rawOffset" : -28800,
"status" : "OK",
"timeZoneId" : "America/Los_Angeles",
"timeZoneName" : "Pacific Standard Time"
}
I want to pass the "timeZoneId" in request Parameter and and fetch "timeZoneName" and if possible other details in Output.
Something like this :
Request :
https://maps.googleapis.com/maps/api/timezone/json?timeZoneId=America/Los_Angeles,-119.6822510×tamp=1331161200&key="Your Api Key"
Response
{
"dstOffset" : 0,
"rawOffset" : -28800,
"timeZoneName" : "Pacific Standard Time"
}
Is there any way to achieve this?
Thanks in advance.