我似乎无法获得用于添加要订阅并对用户可见的日历的颜色设置。我正在设置 foregroundColor 和 backgroundColor 的值以及将 colorRgbFormat 设置为 true,但是无论我将颜色设置为什么,用户的显示器中的颜色总是呈蓝色。
calendarList = api.calendar_list.insert.request_schema.new({
'id' => <calendar id>,
'hidden' => false,
'selected' => true,
'colorRgbFormat' => true,
'backgroundColor' => '#ffff00,
'foregroundColor' => '#000000'
})
result = client.execute(
:api_method => api.calendar_list.insert,
:body_object => calendarList
)