我创建了一个连接谷歌应用程序电子邮件的软件,并允许我为指定用户创建一个包含其信息的签名。在谷歌应用程序域名管理是不可能编辑更多“高级”字段,如公司地址,传真,电子邮件,标题,昵称等..所以我使用Flash面板,为我提供这种可能性。但为此我需要字段api架构将其添加到我的配置中。我通过在配置文件中添加以下内容,设法使其适用于以下字段:名称,公司名称,电子邮件地址,移动电话,标题,部门,经理,传真号码:
<string>cn=Name.FullName</string>
<string>company=Organizations[Rel:http://schemas.google.com/g/2005#work].Name</string>
<string>mail=PrimaryEmail.Address</string>
<string>mobile=Phonenumbers[Rel:http://schemas.google.com/g/2005#mobile].Value</string>
<string>title=Organizations[Rel:http://schemas.google.com/g/2005#work].Title</string><string>department=Organizations[Rel:http://schemas.google.com/g/2005#work].Department</string>
<string>managerGA=ContactEntry.Relations[Rel:manager].Value</string>
<string>facsimiletelephonenumber=Phonenumbers[Rel:http://schemas.google.com/g/2005#work_fax].Value</string>
我搜索了谷歌文档,但我没有设法为某些字段找到正确的api架构格式,如:country,city,pobox,street,nickname,photo,website,URL,Notes,Organization Unit,Aka,和任何其他人。有人可以帮助我找到正确的,或者我在哪里/如何找到它们?