2
Google API 사용자가 기본 캘린더 시간대를 설정하기 위해 Google API 익스플로러를 사용 중입니다. 업데이트 ("서비스> 캘린더 API v3> calendar.calendars.update")와 패치 ("서비스> 캘린더 API v3> calendar.calendars. 패치 ")하지만 시간대는 변경되지 않습니다.Google Apps 사용자 기본 캘린더 API v3 시간대 업데이트가 작동하지 않습니까?
시간대는
이 버그에 ... 달력 응용 프로그램에서 업데이트 ("서비스> 달력 API v3의> calendar.calendars.get")이 업데이트 나 패치를 반영하지 않습니다 이전 값을 반환하지됩니다 캘린더 API v3 또는 내가 누락 된 항목이 있습니까?예 달력 API v3의 요청과 응답 :
Request:
PATCH https://www.googleapis.com/calendar/v3/calendars/user152%40bracnaagencija.com?key={YOUR_API_KEY}
Content-Type: application/json
Authorization: Bearer ya29.1.AADtN_UPBwkU29qf5Tg1rEOZAtBdjv0OArg_RcAaUGNd4K43Pnonf6vK5JcJqfT6ht2bh31n793sry9AIs3-_xk
X-JavaScript-User-Agent: Google APIs Explorer
{
"timeZone": "Europe/Zagreb"
}
Response:
200 OK
- Show headers -
{
"kind": "calendar#calendar",
"etag": "\"XxbwS1MD0Y8jfGZwMQdPS4xI8-w/G_gC5jDwlI70wsfMFOhGzUPev2U\"",
"id": "[email protected]",
"summary": "Unknown Unknown",
"timeZone": "Europe/Zagreb"
}
Request:
GET https://www.googleapis.com/calendar/v3/calendars/user152%40bracnaagencija.com?key={YOUR_API_KEY}
Authorization: Bearer ya29.1.AADtN_UZRmbrmkJvNRyA9739wcpsKPRObitSAnfMeh1WcEan0Z6UML3ryFZaoy0OJELLYu6mgg
X-JavaScript-User-Agent: Google APIs Explorer
Response:
200 OK
- Show headers -
{
"kind": "calendar#calendar",
"etag": "\"XxbwS1MD0Y8jfGZwMQdPS4xI8-w/ykVLEmnFygm61gmsUBUa0zgsq0E\"",
"id": "[email protected]",
"summary": "[email protected]",
"timeZone": "America/New_York"
}
유럽/런던 및 Olson 데이터베이스의 다른 유효한 값으로 시도했지만 차이점이 없습니다. 업데이트 및 패치가 작동하지 않습니다. 잘못된 값으로 시도하면 OK 대신 오류가 발생하므로 문제는 아닙니다. 어쨌든 - 의견을 주셔서 감사합니다 :-) – M14d3n
Ok. 확인 해줘서 고마워. 그것은 단지 추측이었다. 아직 Google에 버그 보고서를 제출하지 않은 경우 제출할 수 있습니다. –
문제 3521을 제출했습니다 : https://code.google.com/a/google.com/p/apps-api-issues/issues/detail?id=3521 – M14d3n