2

我创建了一个连接到谷歌应用程序电子邮件的软件,并允许我使用他们的信息为指定用户创建签名。在谷歌应用程序域管理中,无法编辑更多“高级”字段,如公司地址、传真、电子邮件、标题、昵称等。所以我使用了 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 模式格式,例如:国家、城市、邮箱、街道、昵称、照片、网站、URL、笔记、组织单位、Aka 和任何其他. 有人可以帮我找到正确的或者我在哪里/如何找到它们吗?

4

1 回答 1

2

我希望你能在这里找到对你有帮助的东西: https ://developers.google.com/google-apps/provisioning/

于 2013-04-17T20:17:52.700 回答