是否可以通过新的 Gmail REST API 获取标签颜色?我们的许多用户对他们的电子邮件进行颜色编码,如果能够将这种颜色编码带到我们的应用程序中,那就太好了。
问问题
707 次
2 回答
3
根据文档,标签不包括:
{ “id”:字符串,“名称”:字符串,“messageListVisibility”:字符串,“labelListVisibility”:字符串,“类型”:字符串 }
请参阅:https ://developers.google.com/gmail/api/v1/reference/users/labels
不过,这似乎是一个有用的增强功能。
于 2014-06-26T02:59:40.163 回答
0
下面是蟒蛇
def MakeLabel(label_name, mlv='show', llv='labelShow'):
"""Create Label object.
Args:
label_name: The name of the Label.
mlv: Message list visibility, show/hide.
llv: Label list visibility, labelShow/labelHide.
Returns:
Created Label.
"""
bg_red_color = {'backgroundColor': '#cc3a21', 'textColor': '#000000'}
label = {
'color': bg_red_color,
'messageListVisibility': mlv,
'name': label_name,
'labelListVisibility': llv}
return label
我你需要更多颜色去这里https://developers.google.com/gmail/api/v1/reference/users/labels/create
于 2018-04-12T18:07:35.890 回答