London now has an additional +1 hour of daylight saving time. I made a request to the Google timezone API for the London timezone, but unfortunately, it is not displaying the correct time.
The result returned by this query is as follows:
{
"dstOffset" : 0,
"rawOffset" : 0,
"status" : "OK",
"timeZoneId" : "Europe/London",
"timeZoneName" : "Greenwich Mean Time"
}
Shouldn't the dstOffset be 3600 instead of 0??
I referred to the guidelines provided in Timezone documentation.
What could be causing this discrepancy? How can I retrieve the timezone information with accuracy regarding daylight saving time?