我正在尝试使用谷歌应用脚本和OAuth授权与其他域中的其他用户共享域中用户的谷歌日历。但我无法执行此任务。我获取了用户的所有日历事件但无法进行共享。 任何解决方案将不胜感激。 谢谢
此问题的解决方法如下:
function calenderSharing(user1,user2){
var scope = 'https://www.google.com/calendar/feeds/';
var fetchArgs = googleOAuth_('calenders', scope);
var rawXml= "<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gAcl='http://schemas.google.com/acl/2007'>"+
"<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/acl/2007#accessRule'/>"+
"<gAcl:scope type='user' value='"+user2+"'></gAcl:scope>"+
"<gAcl:role value='http://schemas.google.com/gCal/2005#owner'> </gAcl:role></entry>"
fetchArgs.method = 'POST';
fetchArgs.payload = rawXml
fetchArgs.contentType = 'application/atom+xml';
try{
var url='https://www.google.com/calendar/feeds/'+user1+'/acl/full'
var urlFetch=UrlFetchApp.fetch(url,fetchArgs) //Giving Permission To personal account as a owner
}
catch(err){
var err1=err.toString()
var ex='Exception: Request failed for returned code 302'
if(ex==err1.split('.')[0]){
var tempCalenderUrl=[]
tempCalenderUrl.id = err1.split('<A HREF="')[1];
tempCalenderUrl.id = tempCalenderUrl.id.split('"')[0];
var url=tempCalenderUrl.id
try{
var urlFetch=UrlFetchApp.fetch(url,fetchArgs)
}
catch(err){}
}
}
}
function googleOAuth_(name,scope) {
var oAuthConfig = UrlFetchApp.addOAuthService(name);
oAuthConfig.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken?scope="+scope);
oAuthConfig.setAuthorizationUrl("https://www.google.com/accounts/OAuthAuthorizeToken");
oAuthConfig.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken");
oAuthConfig.setConsumerKey(consumerKey);
oAuthConfig.setConsumerSecret(consumerSecret);
return {oAuthServiceName:name, oAuthUseToken:"always"};
}
答案 0 :(得分:0)
在Google Script中你不能。 Calendar Script API不支持共享日历(目前)。 您的解决方法可能是使用脚本获取日历ID,并使用UrlFetch(使用OAuth)来调用Google Calendar API https://developers.google.com/google-apps/calendar/v3/reference/。确保您进行身份验证,根据您从脚本中检索到的ID执行“获取”以获取日历,获取ACL并添加新条目以与域外的用户共享。
不是一个简单的解决方案。遗憾。
答案 1 :(得分:0)
为什么不制作允许此用户简单订阅此新日历的应用? 所有必要的工具都在天然气日历服务中 - 以下是such an application
的示例