Gmail REST API是否可以访问标签颜色?

时间:2014-06-26 01:06:39

标签: gmail-api

是否可以通过新的Gmail REST API获取标签颜色?我们的许多用户都会对他们的电子邮件进行颜色编码,能够将颜色编码带到我们的应用程序中会非常棒。

2 个答案:

答案 0 :(得分:3)

根据文档标签不包括:

{  " id":字符串,  " name&#34 ;: string,  " messageListVisibility":string,  " labelListVisibility":string,  "输入":字符串 }

请参阅:https://developers.google.com/gmail/api/v1/reference/users/labels

但这看起来似乎是一种有用的增强功能。

答案 1 :(得分:0)

下面的python

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