我尝试使用Ruby更新我的Google组织电子邮件签名,在Python中我有这段代码。
# client.UpdateSignature(username=gmail_user, signature=html)
现在我需要使用Ruby,但我无法访问此功能,我有这个代码,但我不知道女巫&如何使用这个API。
client = Google::APIClient.new(application_name: "xxxxxx", application_version: "0.1")
groups = client.discovered_api('admin', 'directory_v1')
key = Google::APIClient::KeyUtils.load_from_pkcs12('config/xxx69.p12', 'notasecret')
service = client.discovered_api('admin', 'directory_v1')
或如何将直接更新发送至:
https://apps-apis.google.com/a/feeds/emailsettings/2.0/mydomain.com/#{user}/signature
非常感谢。