1

我正在尝试使用谷歌应用程序脚本和 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"};
}
4

2 回答 2

0

在谷歌脚本中你不能。日历脚本 API 不支持共享日历(目前)。您的解决方法可能是使用脚本获取日历 ID,并使用 UrlFetch(使用 OAuth)调用 Google 日历 API https://developers.google.com/google-apps/calendar/v3/reference/。确保您进行身份验证,根据您从脚本中检索到的 ID 执行“获取”以获取日历,获取 ACL 并添加新条目以与域外的用户共享。

不是一个简单的解决方案。对不起。

于 2012-10-16T14:30:03.203 回答
0

你为什么不制作一个允许该用户简单地订阅这个新日历的应用程序呢?所有必要的工具都在气体日历服务中-这是此类应用程序的示例

于 2012-10-16T15:00:40.633 回答