GAS+LineBot開發
	一、Google Apps Script檔案類型
  - 
    
指令碼:程式
 - HTML:樣版
 - 指令碼裡面放函式或宣告 變數 or 常數
 - 有時我們會將 指令碼 加字 做備份,這時內面的函式,名稱會重複,那麼程式會以最後的函式為主,所以不建議這麼做,或將備份檔,往前調動
 
 
      
        .videobox {
          position: relative;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
        }
        .videobox iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
      
      
        
      
    
Youtube影片:https://youtu.be/WaSSPCVcFzo
  
      
        .videobox {
          position: relative;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
        }
        .videobox iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
      
      
        
        
    
 
	Youtube影片:https://youtu.be/AP5htQc1VGU