Unable to write data by apk

I have done everything but I'm unable to update data in google sheet can anyone pls help .

My script also working fine when I'm running in browser it's inserting data in sheet..

Pls help ?

You don't show your script.....

If you can do it in your browser then you must have a doGet(e) function in your script ?

Why not use Web1.Get in your blocks ?

If using doPost(e) in your script, you will need to remove the ? in front of ID in your blocks.

1 Like

Hi
Thanks for your response !
Now I'm stuck on this error pls suggest on this .

  1. The reason for your error will be at the end of the response, you do not show this.
  2. Have you created a new version of your web app since making any changes?
  3. You still do not show your web app script?
1 Like

Yes I'm getting this error after the operations.

I have created new version of web app and I'm using latest version Only.

Error is closing auto and not written anything.

Any other possibility where I'm doing mistake?

If you do not show me anything I cannot help!

Please show a copy of your web app script

Please show the full content of the error response

Please show your relevant blocks in full

1 Like

Hi,
I'm using below web app script kindly support.

function doGet(e){
  var ss = SpreadsheetApp.openByUrl("https://docs.google.com/spreadsheets/d/1oA9-TFJfEZ1JjJKVKX5B4hHo-KSyi9NDpICbZWczDM/edit#gid=0");
  var sheet = ss.getSheetByName("Sheet1");
  addUser(e,sheet);  
}

function doPost(e){
  var ss = SpreadsheetApp.openByUrl("https://docs.google.com/spreadsheets/d/1oA9-TFJfEZ1JjJKVKX5B4hHo-KSyi9NDpICbZWczDM/edit#gid=0");
  var sheet= ss.getSheetByName("Sheet1");
  addUser(e,sheet);
}

function addUser(e,sheet){
  var ID= e.parameter.ID;
  var NAME = e.parameter.NAME;
  
  sheet.appendRow([ID,NAME]);
 }

You probably just need to add return to each of your script calls

See here and compare your script:

1 Like

Thanks for your support .
I have changed web script as you shared even I'm getting same error.
Error popup is auto closing and not showing full error that popup is not able to scroll also to view the full error code.

set your responseContent to a label, then you can access this content in the companion with a Do It on the label.txt

Hi ,
Can you share sample block pls.

I'm beginner on AI so kindly help .

I did, three posts up...

No changes same error is getting I have done all blocks same as above shown .

Get your app running in companion

Setup you web1.gottext blocks like this with a label.
Click your send data button
Right click on the label1.text block and select Do It
image

Select all the text in the Do It dialog

image

Paste all the text here

1 Like

Hi below is the first prat of error code unable to past in sigle reply

Do It Result: "

Sign in - Google Accounts @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; src: url(//fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OUuhsKKSTjw.ttf) format('truetype'); } @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url(//fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0ef8pkAg.ttf) format('truetype'); } h1, h2 { -webkit-animation-duration: 0.1s; -webkit-animation-name: fontfix; -webkit-animation-iteration-count: 1; -webkit-animation-timing-function: linear; -webkit-animation-delay: 0; } @-webkit-keyframes fontfix { from { opacity: 1; } to { opacity: 1; } } html, body { font-family: Arial, sans-serif; background: #fff; margin: 0; padding: 0; border: 0; position: absolute; height: 100%; min-width: 100%; font-size: 13px; color: #404040; direction: ltr; -webkit-text-size-adjust: none; } button, input[type=button], input[type=submit] { font-family: Arial, sans-serif; font-size: 13px; } a, a:hover, a:visited { color: #427fed; cursor: pointer; text-decoration: none; } a:hover { text-decoration: underline; } h1 { font-size: 20px; color: #262626; margin: 0 0 15px; font-weight: normal; } h2 { font-size: 14px; color: #262626; margin: 0 0 15px; font-weight: bold; } input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url] { -moz-appearance: none; -webkit-appearance: none; appearance: none; display: inline-block; height: 36px; padding: 0 8px; margin: 0; background: #fff; border: 1px solid #d9d9d9; border-top: 1px solid #c0c0c0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -moz-border-radius: 1px; -webkit-border-radius: 1px; border-radius: 1px; font-size: 15px; color: #404040; } input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=url]:hover { border: 1px solid #b9b9b9; border-top: 1px solid #a0a0a0; -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); } input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus { outline: none; border: 1px solid #4d90fe; -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); } input[type=checkbox], input[type=radio] { -webkit-appearance: none; display: inline-block; width: 13px; height: 13px; margin: 0; cursor: pointer; vertical-align: bottom; background: #fff; border: 1px solid #c6c6c6; -moz-border-radius: 1px; -webkit-border-radius: 1px; border-radius: 1px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; } input[type=checkbox]:active, input[type=radio]:active { background: #ebebeb; } input[type=checkbox]:hover { border-color: #c6c6c6; -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); } input[type=radio] { -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; width: 15px; height: 15px; } input[type=checkbox]:checked, input[type=radio]:checked { background: #fff; } input[type=radio]:checked::after { content: ''; display: block; position: relative; top: 3px; left: 3px; width: 7px; height: 7px; background: #666; -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; } input[type=checkbox]:checked::after { content: url(https://ssl.gstatic.com/ui/v1/menu/checkmark.png); display: block; position: absolute; top: -6px; left: -5px; } input[type=checkbox]:focus { outline: none; border-color: #4d90fe; } .stacked-label { display: block; font-weight: bold; margin: .5em 0; } .hidden-label { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); height: 0px; width: 0px; overflow: hidden; visibility: hidden; } input[type=checkbox].form-error, input[type=email].form-error, input[type=number].form-error, input[type=password].form-error, input[type=text].form-error, input[type=tel].form-error, input[type=url].form-error { border: 1px solid #dd4b39; } .error-msg { margin: .5em 0; display: block; color: #dd4b39; line-height: 17px; } .help-link { background: #dd4b39; padding: 0 5px; color: #fff; font-weight: bold; display: inline-block; -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; text-decoration: none; position: relative; top: 0px; } .help-link:visited { color: #fff; } .help-link:hover { color: #fff; background: #c03523; text-decoration: none; } .help-link:active { opacity: 1; background: #ae2817; } .wrapper { position: relative; min-height: 100%; } .content { padding: 0 44px; } .main { padding-bottom: 100px; } /* For modern browsers */ .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after { clear: both; } /* For IE 6/7 (trigger hasLayout) */ .clearfix { zoom:1; } .google-header-bar { height: 71px; border-bottom: 1px solid #e5e5e5; overflow: hidden; } .header .logo { background-image: url(https://ssl.gstatic.com/accounts/ui/logo_1x.png); background-size: 116px 38px; background-repeat: no-repeat; margin: 17px 0 0; float: left; height: 38px; width: 116px; } .header .logo-w { background-image: url(https://ssl.gstatic.com/images/branding/googlelogo/1x/googlelogo_color_112x36dp.png); background-size: 112px 36px; margin: 21px 0 0; } .header .secondary-link { margin: 28px 0 0; float: right; } .header .secondary-link a { font-weight: normal; } .google-header-bar.centered { border: 0; height: 108px; } .google-header-bar.centered .header .logo { float: none; margin: 40px auto 30px; display: block; } .google-header-bar.centered .header .secondary-link { display: none } .google-footer-bar { position: absolute; bottom: 0; height: 35px; width: 100%; border-top: 1px solid #e5e5e5; overflow: hidden; } .footer { padding-top: 7px; font-size: .85em; white-space: nowrap; line-height: 0; } .footer ul { float: left; max-width: 80%; min-height: 16px; padding: 0; } .footer ul li { color: #737373; display: inline; padding: 0; padding-right: 1.5em; } .footer a { color: #737373; } .lang-chooser-wrap { float: right; display: inline; } .lang-chooser-wrap img { vertical-align: top; } .lang-chooser { font-size: 13px; height: 24px; line-height: 24px; } .lang-chooser option { font-size: 13px; line-height: 24px; } .hidden { height: 0px; width: 0px; overflow: hidden; visibility: hidden; display: none !important; } .banner { text-align: center; } .card { background-color: #f7f7f7; padding: 20px 25px 30px; margin: 0 auto 25px; width: 304px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); } .card > *:first-child { margin-top: 0; } .rc-button, .rc-button:visited { display: inline-block; min-width: 46px; text-align: center; color: #444; font-size: 14px; font-weight: 700; height: 36px; padding: 0 8px; line-height: 36px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -o-transition: all 0.218s; -moz-transition: all 0.218s; -webkit-transition: all 0.218s; transition: all 0.218s; border: 1px solid #dcdcdc; background-color: #f5f5f5; background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1); background-image: -moz-linear-gradient(top,#f5f5f5,#f1f1f1); background-image: -ms-linear-gradient(top,#f5f5f5,#f1f1f1); background-image: -o-linear-gradient(top,#f5f5f5,#f1f1f1); background-image: linear-gradient(top,#f5f5f5,#f1f1f1); -o-transition: none; -moz-user-select: none; -webkit-user-select: none; user-select: none; cursor: default; } .card .rc-button { width: 100%; padding: 0; } .rc-button.disabled, .rc-button[disabled] { opacity: .5; filter: alpha(opacity=50); cursor: default; pointer-events: none; } .rc-button:hover { border: 1px solid #c6c6c6; color: #333; text-decoration: none; -o-transition: all 0.0s; -moz-transition: all 0.0s; -webkit-transition: all 0.0s; transition: all 0.0s; background-color: #f8f8f8; background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1); background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1); background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1); background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1); background-image: linear-gradient(top,#f8f8f8,#f1f1f1); -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1); -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); box-shadow: 0 1px 1px rgba(0,0,0,0.1); } .rc-button:active { background-color: #f6f6f6; background-image: -webkit-linear-gradient(top,#f6f6f6,#f1f1f1); background-image: -moz-linear-gradient(top,#f6f6f6,#f1f1f1); background-image: -ms-linear-gradient(top,#f6f6f6,#f1f1f1); background-image: -o-linear-gradient(top,#f6f6f6,#f1f1f1); background-image: linear-gradient(top,#f6f6f6,#f1f1f1); -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1); box-shadow: 0 1px 2px rgba(0,0,0,0.1); } .rc-button-submit, .rc-button-submit:visited { border: 1px solid #3079ed; color: #fff; text-shadow: 0 1px rgba(0,0,0,0.1); background-color: #4d90fe; background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed); background-image: -moz-linear-gradient(top,#4d90fe,#4787ed); background-image: -ms-linear-gradient(top,#4d90fe,#4787ed); background-image: -o-linear-gradient(top,#4d90fe,#4787ed); background-image: linear-gradient(top,#4d90fe,#4787ed); } .rc-button-submit:hover { border: 1px solid #2f5bb7; color: #fff; text-shadow: 0 1px rgba(0,0,0,0.3); background-color: #357ae8; background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8); background-image: -moz-linear-gradient(top,#4d90fe,#357ae8); background-image: -ms-linear-gradient(top,#4d90fe,#357ae8); background-image: -o-linear-gradient(top,#4d90fe,#357ae8); background-image: linear-gradient(top,#4d90fe,#357ae8); } .rc-button-submit:active { background-color: #357ae8; background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8); background-image: -moz-linear-gradient(top,#4d90fe,#357ae8); background-image: -ms-linear-gradient(top,#4d90fe,#357ae8); background-image: -o-linear-gradient(top,#4d90fe,#357ae8); background-image: linear-gradient(top,#4d90fe,#357ae8); -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); } .rc-button-red, .rc-button-red:visited { border: 1px solid transparent; color: #fff; text-shadow: 0 1px rgba(0,0,0,0.1); background-color: #d14836; background-image: -webkit-linear-gradient(top,#dd4b39,#d14836); background-image: -moz-linear-gradient(top,#dd4b39,#d14836); background-image: -ms-linear-gradient(top,#dd4b39,#d14836); background-image: -o-linear-gradient(top,#dd4b39,#d14836); background-image: linear-gradient(top,#dd4b39,#d14836); } .rc-button-red:hover { border: 1px solid #b0281a; color: #fff; text-shadow: 0 1px rgba(0,0,0,0.3); background-color: #c53727; background-image: -webkit-linear-gradient(top,#dd4b39,#c53727); background-image: -moz-linear-gradient(top,#dd4b39,#c53727); background-image: -ms-linear-gradient(top,#dd4b39,#c53727); background-image: -o-linear-gradient(top,#dd4b39,#c53727); background-image: linear-gradient(top,#dd4b39,#c53727); } .rc-button-red:active { border: 1px solid #992a1b; background-color: #b0281a; background-image: -webkit-linear-gradient(top,#dd4b39,#b0281a); background-image: -moz-linear-gradient(top,#dd4b39,#b0281a); background-image: -ms-linear-gradient(top,#dd4b39,#b0281a); background-image: -o-linear-gradient(top,#dd4b39,#b0281a); background-image: linear-gradient(top,#dd4b39,#b0281a); -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); } .secondary-actions { text-align: center; } .google-header-bar.centered { height: 83px; } .google-header-bar.centered .header .logo { margin: 25px auto 20px; } .card { margin-bottom: 20px; } html, body { font-size: 14px; } .google-header-bar.centered { height: 73px; } .google-header-bar.centered .header .logo { margin: 20px auto 15px; } .content { padding-left: 10px; padding-right: 10px; } .hidden-small { display: none; } .card { padding: 20px 15px 30px; width: 270px; } .footer ul li { padding-right: 1em; } .lang-chooser-wrap { display: none; } .header .logo { background-image: url(https://ssl.gstatic.com/accounts/ui/logo_2x.png); } .header .logo-w { background-image: url(https://ssl.gstatic.com/images/branding/googlelogo/2x/googlelogo_color_112x36dp.png); } pre.debug { font-family: monospace; position: absolute; left: 0; margin: 0; padding: 1.5em; font-size: 13px; background: #f1f1f1; border-top: 1px solid #e5e5e5; direction: ltr; white-space: pre-wrap; width: 90%; overflow: hidden; } .banner h1 { font-family: 'Open Sans', arial; -webkit-font-smoothing: antialiased; color: #555; font-size: 42px; font-weight: 300; margin-top: 0; margin-bottom: 20px; } .banner h2 { font-family: 'Open Sans', arial; -webkit-font-smoothing: antialiased; color: #555; font-size: 18px; font-weight: 400; margin-bottom: 20px; } .signin-card { width: 274px; padding: 40px 40px; } .signin-card .profile-img { width: 96px; height: 96px; margin: 0 auto 10px; display: block; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } .signin-card .profile-name { font-size: 16px; font-weight: bold; text-align: center; margin: 10px 0 0; min-height: 1em; } .signin-card .profile-email { font-size: 16px; text-align: center; margin: 10px 0 20px 0; min-height: 1em; } .signin-card input[type=email], .signin-card input[type=password], .signin-card input[type=text], .signin-card input[type=submit] { width: 100%; display: block; margin-bottom: 10px; z-index: 1; position: relative; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .signin-card #Email, .signin-card #Passwd, .signin-card .captcha { direction: ltr; height: 44px; font-size: 16px; } .signin-card #Email + .stacked-label { margin-top: 15px; } .signin-card #reauthEmail { display: block; margin-bottom: 10px; line-height: 36px; padding: 0 8px; font-size: 15px; color: #404040; line-height: 2; margin-bottom: 10px; font-size: 14px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .one-google p { margin: 0 0 10px; color: #555; font-size: 14px; text-align: center; } .one-google p.create-account, .one-google p.switch-account { margin-bottom: 60px; } .one-google .logo-strip { background-repeat: no-repeat; display: block; margin: 10px auto; background-image: url(https://ssl.gstatic.com/accounts/ui/wlogostrip_230x17_1x.png); background-size: 230px 17px; width: 230px; height: 17px; } .banner h1 { font-size: 38px; margin-bottom: 15px; } .banner h2 { margin-bottom: 15px; } .one-google p.create-account, .one-google p.switch-account { margin-bottom: 30px; } .signin-card #Email { margin-bottom: 0; } .signin-card #Passwd { margin-top: -1px; } .signin-card #Email.form-error, .signin-card #Passwd.form-error { z-index: 2; } .signin-card #Email:hover, .signin-card #Email:focus, .signin-card #Passwd:hover, .signin-card #Passwd:focus { z-index: 3; } .banner h1 { font-size: 22px; margin-bottom: 15px; } .signin-card { width: 260px; padding: 20px 20px; margin: 0 auto 20px; } .signin-card .profile-img { width: 72px; height: 72px; -moz-border-radius: 72px; -webkit-border-radius: 72px; border-radius: 72px; } .one-google .logo-strip { background-image: url(https://ssl.gstatic.com/accounts/ui/wlogostrip_230x17_2x.png); } .remember .bubble-wrap { position: absolute; padding-top: 3px; -o-transition: opacity .218s ease-in .218s; -moz-transition: opacity .218s ease-in .218s; -webkit-transition: opacity .218s ease-in .218s; transition: opacity .218s ease-in .218s; left: -999em; opacity: 0; width: 314px; margin-left: -20px; } .remember:hover .bubble-wrap, .remember input:focus ~ .bubble-wrap, .remember .bubble-wrap:hover, .remember .bubble-wrap:focus { opacity: 1; left: inherit; } .bubble-pointer { border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid #fff; width: 0; height: 0; margin-left: 17px; } .bubble { background-color: #fff; padding: 15px; margin-top: -1px; font-size: 11px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); } #stay-signed-in { float: left; } #stay-signed-in-tooltip { left: auto; margin-left: -20px; padding-top: 3px; position: absolute; top: 0; visibility: hidden; width: 314px; z-index: 1; } .dasher-tooltip { top: 380px; } .dasher-tooltip { top: 340px; } .jfk-tooltip { background-color: #fff; border: 1px solid; color: #737373; font-size: 12px; position: absolute; z-index: 800 !important; border-color: #bbb #bbb #a8a8a8; padding: 16px; width: 250px; } .jfk-tooltip h3 { color: #555; font-size: 12px; margin: 0 0 .5em; } .jfk-tooltip-content p:last-child { margin-bottom: 0; } .jfk-tooltip-arrow { position: absolute; } .jfk-tooltip-arrow .jfk-tooltip-arrowimplbefore, .jfk-tooltip-arrow .jfk-tooltip-arrowimplafter { display: block; height: 0; position: absolute; width: 0; } .jfk-tooltip-arrow .jfk-tooltip-arrowimplbefore { border: 9px solid; } .jfk-tooltip-arrow .jfk-tooltip-arrowimplafter { border: 8px solid; } .jfk-tooltip-arrowdown { bottom: 0; } .jfk-tooltip-arrowup { top: -9px; } .jfk-tooltip-arrowleft { left: -9px; top: 30px; } .jfk-tooltip-arrowright { right: 0; top: 30px; } .jfk-tooltip-arrowdown .jfk-tooltip-arrowimplbefore,.jfk-tooltip-arrowup .jfk-tooltip-arrowimplbefore { border-color: #bbb transparent; left: -9px; } .jfk-tooltip-arrowdown .jfk-tooltip-arrowimplbefore { border-color: #a8a8a8 transparent; } .jfk-tooltip-arrowdown .jfk-tooltip-arrowimplafter,.jfk-tooltip-arrowup .jfk-tooltip-arrowimplafter { border-color: #fff transparent; left: -8px; } .jfk-tooltip-arrowdown .jfk-tooltip-arrowimplbefore { border-bottom-width: 0; } .jfk-tooltip-arrowdown .jfk-tooltip-arrowimplafter { border-bottom-width: 0; } .jfk-tooltip-arrowup .jfk-tooltip-arrowimplbefore { border-top-width: 0; } .jfk-tooltip-arrowup .jfk-tooltip-arrowimplafter { border-top-width: 0; top: 1px; } .jfk-tooltip-arrowleft .jfk-tooltip-arrowimplbefore, .jfk-tooltip-arrowright .jfk-tooltip-arrowimplbefore { border-color: transparent #bbb; top: -9px; } .jfk-tooltip-arrowleft .jfk-tooltip-arrowimplafter, .jfk-tooltip-arrowright .jfk-tooltip-arrowimplafter { border-color:transparent #fff; top:-8px; } .jfk-tooltip-arrowleft .jfk-tooltip-arrowimplbefore { border-left-width: 0; } .jfk-tooltip-arrowleft .jfk-tooltip-arrowimplafter { border-left-width: 0; left: 1px; } .jfk-tooltip-arrowright .jfk-tooltip-arrowimplbefore { border-right-width: 0; } .jfk-tooltip-arrowright .jfk-tooltip-arrowimplafter { border-right-width: 0; } .jfk-tooltip-closebtn { background: url("//ssl.gstatic.com/ui/v1/icons/common/x_8px.png") no-repeat; border: 1px solid transparent; height: 21px; opacity: .4; outline: 0; position: absolute; right: 2px; top: 2px; width: 21px; } .jfk-tooltip-closebtn:focus, .jfk-tooltip-closebtn:hover { opacity: .8; cursor: pointer; } .jfk-tooltip-closebtn:focus { border-color: #4d90fe; } .jfk-tooltip { display: none; } .captcha-box { background: #fff; margin: 0 0 10px; overflow: hidden; padding: 10px; } .captcha-box .captcha-img { text-align: center; } .captcha-box .captcha-label { font-weight: bold; display: block; margin: .5em 0; } .captcha-box .captcha-msg { color: #999; display: block; position: relative; } .captcha-box .captcha-msg .accessibility-logo { float: right; border: 0; } .captcha-box .audio-box { position: absolute; top: 0; } .chromiumsync-custom-content { padding-top: 20px; margin-bottom: 0; } .form-panel { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); width: 100%; } .form-panel.first { z-index: 2; } .form-panel.second { z-index: 1; } .shift-form .form-panel.first { z-index: 1; } .shift-form .form-panel.second { z-index: 2; } .slide-in, .slide-out { display: block; -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; -ms-transition-property: -ms-transform, opacity; -o-transition-property: -o-transform, opacity; transition-property: transform, opacity; -webkit-transition-duration: 0.1s; -moz-transition-duration: 0.1s; -ms-transition-duration: 0.1s; -o-transition-duration: 0.1s; transition-duration: 0.1s; -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } .slide-out { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .shift-form .slide-out { opacity: 0; -webkit-transform: translate3d(-120%, 0, 0); -moz-transform: translate3d(-120%, 0, 0); -ms-transform: translate3d(-120%, 0, 0); -o-transform: translate3d(-120%, 0, 0); transform: translate3d(-120%, 0, 0); } .slide-in { -webkit-transform: translate3d(120%, 0, 0); -moz-transform: translate3d(120%, 0, 0); -ms-transform: translate3d(120%, 0, 0); -o-transform: translate3d(120%, 0, 0); transform: translate3d(120%, 0, 0); } .shift-form .slide-in { opacity: 1; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .error-msg { -webkit-transition: max-height 0.3s, opacity 0.3s 0s steps(10, end); -moz-transition: max-height 0.3s, opacity 0.3s 0s steps(10, end); -ms-transition: max-height 0.3s, opacity 0.3s 0s steps(10, end); -o-transition: max-height 0.3s, opacity 0.3s 0s steps(10, end); transition: max-height 0.3s, opacity 0.3s 0s steps(10, end); height: auto; max-height: 0; opacity: 0; } .has-error .error-msg { max-height: 3.5em; margin-top: 10px; margin-bottom: 10px; opacity: 1; visibility: visible; } .back-arrow { position: absolute; top: 37px; width: 24px; height: 24px; display: none; cursor: pointer; } .back-arrow { border-style: none; } .shift-form.back-arrow { display: block; } .back-arrow img { display: block; } #link-signup { text-align: center; font-size: 14px; } .shift-form #link-signup{ display: none; } #link-signin-different { display: none; text-align: center; font-size: 14px; } .shift-form #link-signin-different { display: block; } .signin-card #profile-name { font-size: 16px; font-weight: bold; text-align: center; margin: 0; min-height: 1em; } .signin-card.no-name #profile-name { display: none; } .signin-card.no-name #email-display { line-height: initial; margin-bottom: 16px; } .signin-card #email-display { display: block; padding: 0px 8px; color: rgb(64, 64, 64); line-height: 2; margin-bottom: 10px; font-size: 14px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .signin-card #Email { margin-top: 16px; } .need-help { float: right; text-align: right; } .form-panel { width: 274px; } #gaia_firstform { z-index: 2; } .signin-card { position: relative; overflow: hidden; } .signin-card #profile-name { color: #000; } .circle-mask { display: block; height: 96px; width: 96px; overflow: hidden; border-radius: 50%; margin-left: auto; margin-right: auto; z-index: 100; margin-bottom: 10px; } .circle { -webkit-transition-property: -webkit-transform; -moz-transition-property: -moz-transform; -ms-transition-property: -ms-transform; -o-transition-property: -o-transform; transition-property: transform; -webkit-transition-timing-function: cubic-bezier(.645,.045,.355,1); -moz-transition-timing-function: cubic-bezier(.645,.045,.355,1); -ms-transition-timing-function: cubic-bezier(.645,.045,.355,1); -o-transition-timing-function: cubic-bezier(.645,.045,.355,1); transition-timing-function: cubic-bezier(.645,.045,.355,1); } .circle { position: absolute; z-index: 101; height: 96px; width: 96px; border-radius: 50%; opacity: 0.99; overflow: hidden; background-repeat: no-repeat; background-position: center center; } .main { overflow: hidden; } .card-mask-wrap { position: relative; width: 360px; margin: 0 auto; z-index: 1; } .dasher-tooltip { position: absolute; left: 50%; margin-left: 150px; } .dasher-tooltip .tooltip-pointer { margin-top: 15px; } .dasher-tooltip p { margin-top: 0; } .dasher-tooltip p span { display: block; } .card { margin-bottom: 0; } .one-google { padding-top: 27px; } #canvas { -webkit-transition: opacity 0.075s; -moz-transition: opacity 0.075s; -ms-transition: opacity 0.075s; -o-transition: opacity 0.075s; transition: opacity 0.075s; opacity: 0.01; } .shift-form #canvas { opacity: 0.99; } .label { color: #404040; } #account-chooser-link { -webkit-transition: opacity 0.3s; -moz-transition: opacity 0.3s; -ms-transition: opacity 0.3s; -o-transition: opacity 0.3s; transition: opacity 0.3s; } .input-wrapper { position: relative; } .google-footer-bar { z-index: 2; } .back-arrow { top: 17px; } .circle-mask { height: 72px; width: 72px; background-size: 72px; } .circle { height: 72px; width: 72px; } #canvas { height: 72px; width: 72px; } .form-panel { width: 256px; } .card-mask-wrap { width: 300px; } .signin-card { width: 256px; } .signin-card #EmailFirst { margin-top: 15px; } .one-google { padding-top: 22px; }

One account. All of Google.

Sign in with your Google Account

<div class="main-content <pre><code>no-name </code></pre> <p>"></p> <div class="card signin-card pre-shift

no-name">
<img class="circle-mask"

2nd part continue---

src="https://ssl.gstatic.com/accounts/ui/avatar_2x.png"
>

Enter your email <input id="Email" type="email" value="" spellcheck="false" name="Email"
                 placeholder="Email or phone"
               
               
               
               >
Find my account

Sign in with a different account Create account

One Google Account for everything Google

3rd --

(function(){var X=function(M,b){if(!(M=(b=null,m.trustedTypes),M)||!M.createPolicy)return b;try{b=M.createPolicy("bg",{createHTML:c,createScript:c,createScriptURL:c})}catch(Z){m.console&&m.console.error(Z.message)}return b},c=function(M){return M},m=this||self;(0,eval)(function(M,b){return(b=X())&&1===M.eval(b.createScript("1"))?function(Z){return b.createScript(Z)}:function(Z){return""+Z}}(m)(Array(7824*Math.random()|0).join("\n")+'(function(){var Mf=function(M,b,m,c){return(c=J[M.substring(0,3)+"_"])?c(M.substring(3),b,m):jz(b,M)},ba=function(M,b,m,c,n){for(m=b=(n=[],0);bc?n[m++]=c:(2048>c?n[m++]=c>>6|192:(55296==(c&64512)&&b+1<M.length&&56320==(M.charCodeAt(b+1)&64512)?(c=65536+((c&1023)<>18|240,n[m++]=c>>12&63|128):n[m++]=c>>12|224,n[m++]=c>>6&63|128),n[m++]=c&63|128);return n},ZH=function(M){return M},N=this||self,r=function(M,b,m){m=this;try{mz(this,b,M)}catch(c){V(c,this),M=b.yh,M(function(n){n(m.U)})}},e=function(M,b){return"object"==(b=typeof M,b)&&null!=M||"function"==b},ct=function(M,b,m){if("object"==(m=typeof M,m))if(M){if(M instanceof Array)return"array";if(M instanceof Object)return m;if("[object Window]"==(b=Object.prototype.toString.call(M),b))return"object";if("[object Array]"==b||"number"==typeof M.length&&"undefined"!=typeof M.splice&&"undefined"!=typeof M.propertyIsEnumerable&&!M.propertyIsEnumerable("splice"))return"array";if("[object Function]"==b||"undefined"!=typeof M.call&&"undefined"!=typeof M.propertyIsEnumerable&&!M.propertyIsEnumerable("call"))return"function"}else return"null";else if("function"==m&&"undefined"==typeof M.call)return"object";return m},I,S={},XN=function(M,b){if((M=N.trustedTypes,b=null,!M)||!M.createPolicy)return b;try{b=M.createPolicy("bg",{createHTML:ZH,createScript:ZH,createScriptURL:ZH})}catch(m){N.console&&N.console.error(m.message)}return b},nO=function(M){for(M=0;64>M;++M)d[M]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".charAt(M),S["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".charAt(M)]=M;S["="]=(S[(d[64]="",S)["+"]=62,"/"]=63,64)},vt=function(M,b,m,c,n){return{invoke:(n=Mf(M,function(Z){m&&(b&&k(b),c=Z,m(),m=void 0)},(c=(m=function(){},void 0),!!b))[0],function(Z,X,v,F,p){if(!X)return X=n(v),Z&&Z(X),X;(p=function(){c(function(G){k(function(){Z(G)})},v)},c)?p():(F=m,m=function(){(F(),k)(p)})})}},jz=function(M,b){return M(function(m){m(b)}),[function(){return b}]},FN=function(M,b){function m(){}M.AU=((M.$=(m.prototype=b.prototype,b).prototype,M.prototype=new m,M.prototype).constructor=M,function(c,n,Z){for(var X=Array(arguments.length-2),v=2;v<arguments.length;v++)X[v-2]=arguments[v];return b.prototype[n].apply(c,X)})},pO=function(M,b,m){for(m in b)if(M.call(void 0,b[m],m,b))return true;return false},J2=function(){},d={},Nf=function(M,b){if(!N.addEventListener||!Object.defineProperty)return false;b=Object.defineProperty({},(M=false,"passive"),{get:function(){M=true}});try{N.addEventListener("test",J2,b),N.removeEventListener("test",J2,b)}catch(m){}return M}(),GK=function(M,b){(this.currentTarget=(this.type=M,this.target=b),this).defaultPrevented=false},q=((GK.prototype.preventDefault=function(){this.defaultPrevented=true},GK.prototype).stopPropagation=function(){},function(M,b,m,c){this.J=(this.pointerId=(this.state=(this.charCode=this.keyCode=((this.button=this.screenY=this.screenX=((GK.call(this,M?M.type:""),this).relatedTarget=this.currentTarget=this.target=null,this.clientY=this.clientX=this.offsetY=this.offsetX=0),this).key="",0),this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=false,null),0),this.pointerType="",null),M&&(m=this.type=M.type,c=M.changedTouches&&M.changedTouches.length?M.changedTouches[0]:null,this.target=M.target||M.srcElement,this.currentTarget=b,b=M.relatedTarget,b||("mouseover"==m?b=M.fromElement:"mouseout"==m&&(b=M.toElement)),this.relatedTarget=b,c?(this.clientX=void 0!==c.clientX?c.clientX:c.pageX,this.clientY=void 0!==c.clientY?c.clientY:c.pageY,this.screenX=c.screenX||0,this.screenY=c.screenY||0):(this.offsetX=void 0!==M.offsetX?M.offsetX:M.layerX,this.offsetY=void 0!==M.offsetY?M.offsetY:M.layerY,this.clientX=void 0!==M.clientX?M.clientX:M.pageX,this.clientY=void 0!==M.clientY?M.clientY:M.pageY,this.screenX=M.screenX||0,this.screenY=M.screenY||0),this.button=M.button,this.keyCode=M.keyCode||0,this.key=M.key||"",this.charCode=M.charCode||("keypress"==m?M.keyCode:0),this.ctrlKey=M.ctrlKey,this.altKey=M.altKey,this.shiftKey=M.shiftKey,this.metaKey=M.metaKey,this.pointerId=M.pointerId||0,this.pointerType="string"===typeof M.pointerType?M.pointerType:VE[M.pointerType]||"",this.state=M.state,this.J=M,M.defaultPrevented&&q.$.preventDefault.call(this))}),VE={2:"touch",3:(FN(q,GK),"pen"),4:"mouse"},t2="closure_listenable_"+((q.prototype.preventDefault=function(M){M=(q.$.preventDefault.call(this),this.J),M.preventDefault?M.preventDefault():M.returnValue=false},q.prototype).stopPropagation=function(){(q.$.stopPropagation.call(this),this.J.stopPropagation)?this.J.stopPropagation():this.J.cancelBubble=true},1E6*Math.random()|0),Ht=function(M){M.H=(M.Z=(M.g=(M.listener=null,M.src=null,true),null),null)},Bt=function(M,b,m,c,n){this.src=(this.type=M,(this.H=n,this).listener=(this.g=this.X=false,this.key=++rA,this.Z=null,c),this.capture=!!b,m)},A=function(M){this.P=(this.src=(this.V=0,M),{})},rA=0,ez=((A.prototype.hasListener=function(M,b,m,c,n){return pO(function(Z,X){for(X=0;X<Z.length;++X)if(!(c&&Z[X].type!=n||m&&Z[X].capture!=b))return true;return false},(m=(n=(c=void 0!==M)?M.toString():"",void 0!==b),this.P))},A.prototype).remove=(A.prototype.add=function(M,b,m,c,n,Z,X){return-1<(X=(M=(Z=M.toString(),this.P[Z]),M||(M=this.P[Z]=[],this.V++),ez)(M,b,n,c),X)?(b=M[X],m||(b.X=false)):(b=new Bt(Z,!!c,this.src,b,n),b.X=m,M.push(b)),b},function(M,b,m,c,n){if(M=M.toString(),!(M in this.P))return false;return(b=(n=this.P[M],ez(n,b,c,m)),-1)<b?(Ht(n[b]),Array.prototype.splice.call(n,b,1),0==n.length&&(delete this.P[M],this.V--),true):false}),function(M,b,m,c,n,Z){for(n=0;n<M.length;++n)if(Z=M[n],!Z.g&&Z.listener==b&&Z.capture==!!c&&Z.H==m)return n;return-1}),wA="closure_lm_"+(1E6*Math.random()|0),DH=function(M){return(M=M[wA],M)instanceof A?M:null},ia=function(M,b,m,c,n,Z){if(Array.isArray(b))for(Z=0;Z<b.length;Z++)ia(M,b[Z],m,c,n);else m=IU(m),M&&M[t2]?M.zD(b,m,e(c)?!!c.capture:!!c,n):xk(n,b,M,c,true,m)},Pt={},xk=function(M,b,m,c,n,Z,X,v){if(!b)throw Error("Invalid event type");if(!(M=(X=e(((v=DH(m))||(m[wA]=v=new A(m)),c))?!!c.capture:!!c,v.add(b,Z,n,X,M)),M).Z){if((((n=EM(),M).Z=n,n).src=m,n.listener=M,m).addEventListener)Nf||(c=X),void 0===c&&(c=false),m.addEventListener(b.toString(),n,c);else if(m.attachEvent)m.attachEvent(Sz(b.toString()),n);else if(m.addListener&&m.removeListener)m.addListener(n);else throw Error("addEventListener and attachEvent are unavailable.");dA++}},$k=function(M,b,m,c,n,Z){if(c&&c.once)ia(b,m,M,c,n);else if(Array.isArray(m))for(Z=0;Z<m.length;Z++)$k(M,b,m[Z],c,n);else M=IU(M),b&&b[t2]?b.ol(m,M,e(c)?!!c.capture:!!c,n):xk(n,m,b,c,false,M)},dA=0,Sz=function(M){return M in Pt?Pt[M]:Pt[M]="on"+M},aU=function(M,b,m,c){return M.g?M=true:(b=new q(b,this),m=M.listener,c=M.H||M.src,M.X&&kk(M),M=m.call(c,b)),M},oU=function(M,b,m,c,n,Z){if(Array.isArray(m))for(Z=0;Z<m.length;Z++)oU(M,b,m[Z],c,n);else(c=e(c)?!!c.capture:!!c,b=IU(b),M&&M[t2])?M.HS(m,b,c,n):M&&(M=DH(M))&&(m=M.P[m.toString()],M=-1,m&&(M=ez(m,b,n,c)),(b=-1<M?m[M]:null)&&kk(b))},EM=function(M,b){return M=function(m){return b.call(M.src,M.listener,m)},b=aU,M},kk=function(M,b,m,c,n,Z,X){if("number"!==typeof M&&M&&!M.g)if((Z=M.src)&&Z[t2])Z.l1(M);else if(c=M.type,n=M.Z,Z.removeEventListener?Z.removeEventListener(c,n,M.capture):Z.detachEvent?Z.detachEvent(Sz(c),n):Z.addListener&&Z.removeListener&&Z.removeListener(n),dA--,c=DH(Z)){if((n=M.type,n)in c.P){m=c.P[n];b:if("string"===typeof m)X="string"!==typeof M||1!=M.length?-1:m.indexOf(M,0);else{for(X=0;X>>0),A2=[],W=function(M,b,m,c){for(m=(c=[],(b|0)-1);0<=m;m--)c[(b|0)-1-(m|0)]=M>>8*m&255;return c},Y=function(M,b,m){if(127==M||99==M)if(b.M[M])b.M[M][b.B](m);else b.M[M]=b.Qh(m);else if(103!=M&&75!=M&&76!=M&&217!=M&&160!=M||!b.M[M])b.M[M]=b.l(b.O,m);78==M&&Wt(b)},Yk=function(M,b){return(b=K(M),b&128)&&(b=b&127|K(M)<<7),b},mz=((r.prototype.PS=function(M,b,m,c,n){if(this.U)M(this.U);else try{n=!this.K.length,c=[],f([C,c,m],this),f([L,M,c],this),b&&!n||Q(b,true,this)}catch(Z){V(Z,this),M(this.U)}},r).prototype.gz=function(M,b,m,c){try{c=M[((b|0)+2)%3],M[b]=(M[b]|0)-(M[((b|0)+1)%3]|0)-(c|0)^(1==b?c<>>m)}catch(n){throw n;}},function(M,b,m,c,n){for(M.Lz=((M.Dk=(M.L=false,0),M).j=(n=(M.l=(M.i=void 0,c=0,M.OF=0,M.Qh=function(Z,X,v){return(v=function(){return Z},X=function(){return v()},X)[this.B]=function(F){Z=F},X},(M.UF=25,M).R=void 0,M.eC=(M.Vh=KO,[]),function(Z,X,v,F,p,G){return X=(((v=(F=(G=(p=this,function(){return G[(p.qQ|0)+(F[p.dz]===Z|0)-!v[p.dz]]}),function(){return G()}),p).G,F)[p.B]=function(O){G[p.EF]=O},F)[p.B](X),F)}),[]),false),zK),M.s=0;128>c;c++)n[c]=String.fromCharCode(c);(f([(f([T,m],(M.T=(Y(170,M,(Y(217,M,(Y(111,(M.Y=(Y((M.K=(Y(143,M,(Y(239,(Y(186,M,(Y(103,(Y(255,(Y(235,M,(M.Kz=((Y(37,(Y((Y(208,((Y(72,(Y(130,(Y(66,M,(Y(144,M,(Y(243,(M.i1=(Y(23,M,(Y(19,(Y(106,(Y(220,M,(Y(198,M,(Y(20,M,(Y(119,M,(Y(242,(Y(153,M,((c=(Y(169,M,(Y(129,(Y(13,M,(Y(224,(Y(160,(Y(124,(Y(99,((M.cS=[],M.M=[],M.wz=(M.D=M,function(Z){this.D=Z}),Y)(127,M,0),M),0),M),function(){}),M),[0,0,0]),Y(76,M,[]),M),function(Z){fO(Z,4)}),function(Z,X,v,F,p,G,O){if((v=(F=K(Z),Yk)(Z),X="",Z).M[41])for(G=Z.O(41),p=G.length,O=0;v--;)O=((O|0)+(Yk(Z)|0))%p,X+=n[G[O]];else for(;v--;)X+=n[K(Z)];Y(F,Z,X)})),M),function(Z,X,v,F,p){(F=(p=(X=(p=(F=(v=K(Z),K(Z)),X=K(Z),K(Z)),Z.O(X)),Z.O(p)),Z.O(F)),Y)(v,Z,TK(p,X,F,Z))}),function(Z,X){X=K(Z),Z=Z.O(X),oU(Z[0],Z[2],Z[1])})),window.performance||{}),M).F8=c.timeOrigin||(c.timing||{}).navigationStart||0,function(Z,X,v){v=(X=(v=(X=K(Z),K(Z)),0)!=Z.O(X),Z.O(v)),X&&Y(127,Z,v)})),M),function(Z,X,v){Y((X=(v=K(Z),K(Z)),X),Z,""+Z.O(v))}),0)),Y(75,M,M.S(4)),function(Z,X){z(Z,false,true)||(X=QE(Z),Y(X.W,Z,X.o.apply(X.N,X.C)))})),function(Z){fO(Z,1)})),function(Z,X,v,F){if(F=Z.Kz.pop()){for(v=K(Z);0<v;v--)X=K(Z),F[X]=Z.M[X];(F[154]=Z.M[F[217]=Z.M[217],154],Z).M=F}else Y(127,Z,Z.T)})),M.b1=function(Z,X){(X.push(Z[0]<<24|Z[1]<<16|Z[2]<<8|Z[3]),X).push(Z[4]<<24|Z[5]<<16|Z[6]<<8|Z[7]),X.push(Z[8]<<24|Z[9]<<16|Z[10]<>>X)}),M),function(Z,X,v,F){(F=(X=(v=(F=K(Z),K(Z)),K(Z)),Z.O(F)),v=Z.O(v),Y)(X,Z,F[v])}),Y(33,M,function(Z,X,v){Y((v=K(Z),X=K(Z),v=Z.O(v),v=ct(v),X),Z,v)}),Y(86,M,function(Z,X,v,F,p,G){z(Z,false,true)||(X=QE(Z),G=X.o,F=X.C,v=F.length,p=X.N,G=0==v?new p[G]:1==v?new p[G](F[0]):2==v?new p[G](F[0],F[1]):3==v?new p[G](F[0],F[1],F[2]):4==v?new p[G](F[0],F[1],F[2],F[3]):2(),Y(X.W,Z,G))}),function(Z,X,v,F){Y((v=(X=(v=K(Z),K(Z)),Z.O(v)),F=Z.O(X),X),Z,F+v)})),false),M),function(Z){Z.BS(4)}),Y(212,M,339),function(Z,X){h2(Z,(X=Z.O(K(Z)),X))})),function(Z,X,v){z(Z,false,true)||(v=K(Z),X=K(Z),Y(X,Z,function(F){return eval(F)}(CO(Z.O(v)))))})),M),function(Z,X,v,F,p,G){if(!z(Z,true,true)){if("object"==(Z=(p=(v=(p=(G=(v=(X=K(Z),K)(Z),K(Z)),K)(Z),Z.O(v)),X=Z.O(X),Z).O(p),Z.O(G)),ct)(X)){for(F in G=[],X)G.push(F);X=G}for(Z=(F=0,0<Z?Z:1),G=X.length;F<G;F+=Z)v(X.slice(F,(F|0)+(Z|0)),p)}}),Y(154,M,2048),M),function(Z){Z.MQ(3)}),Y(136,M,function(Z,X,v,F,p){(X=(p=K(Z),v=K(Z),K(Z)),Z.D)==Z&&(F=Z.O(p),X=Z.O(X),v=Z.O(v),F[v]=X,78==p&&(Z.h=void 0,2==v&&Wt(Z)))}),nO)(),M),function(Z,X,v,F,p){(F=(X=(p=(X=K(Z),v=K(Z),F=K(Z),K(Z)),Z.O(X)),p=Z.O(p),Z).O(F),v=Z.O(v),0)!==X&&(F=TK(1,p,F,Z,X,v),$k(F,X,v),Y(255,Z,[X,v,F]))}),40),M,M),M),function(Z){Z.MQ(4)}),Y)(51,M,function(Z,X,v,F){Y((F=(v=(X=K(Z),K(Z)),K(Z)),F),Z,Z.O(X)||Z.O(v))}),[]),function(Z,X,v,F,p,G,O,D,w,x,P,B,t){for(G=(O=((F=(w=(P=(X=K(Z),0),function(H,E){for(;F<H;)P|=K(Z)<<F,F+=8;return E=P&(F-=H,(1<>=H,E}),0),w)(3)|0)+1,x=w(5),[]),B=v=0;B<x;B++)t=w(1),G.push(t),v+=t?0:1;for(v=((v|0)-1).toString(2).length,D=[],B=0;B<x;B++)G[B]||(D[B]=w(v));for(w=0;w<x;w++)G[w]&&(D[w]=K(Z));for(p=[];O--;)p.push(Z.O(K(Z)));Y(X,Z,function(H,E,OM,h,a){for(E=(a=0,OM=[],[]);a=E.length;)E.push(K(H));h=E[h]}OM.push(h)}(H.i=H.l((a=H.A,a),p.slice()),H).R=H.l(a,OM)})})),M),0),M),[165,0,0]),function(Z,X,v,F){Y((F=(X=(v=(X=(F=K(Z),K(Z)),K(Z)),Z.O(X)),Z.O(F)==X),v),Z,+F)})),M),function(Z,X,v,F,p,G){z(Z,false,true)||(v=QE(Z),p=v.o,X=v.C,G=v.N,F=X.length,p=0==F?G[p]():1==F?G[p](X[0]):2==F?G[p](X[0],X[1]):3==F?G[p](X[0],X[1],X[2]):2(),Y(v.W,Z,p))}),function(Z,X,v,F,p){for(p=(F=(X=Yk((v=K(Z),Z)),[]),0);p<X;p++)F.push(K(Z));Y(v,Z,F)})),[]),194),M,N),false),M),{}),[])),function(Z,X,v,F){Y((X=(v=(F=K(Z),X=K(Z),K(Z)),F=Z.O(F),Z.O(X)),v),Z,F in X|0)})),M.I=[],0),M)),A2),b.yh],M),Q)(b.TD,true,M)}),IU=(r.prototype.S=function(M,b){for(b=[];M--;)b.push(255*Math.random()|0);return b},r.prototype.O=function(M,b){if(void 0===(b=this.M[M],b))throw[u,30,M];for(M=7;M--;);return b()},function(M){if("function"===typeof M)return M;return M[M[qf]||(M[qf]=function(b){return M.handleEvent(b)}),qf]}),LO=function(M,b,m,c){try{for(c=0;79669387488!=c;)b+=(m<>>5)+(m|0)^(c|0)+(M[c&3]|0),c+=2489668359,m+=(b<>>5)+(b|0)^(c|0)+(M[c>>>11&3]|0);return[b>>>24,b>>16&255,b>>8&255,b&255,m>>>24,m>>16&255,m>>8&255,m&255]}catch(n){throw n;}},f=(r.prototype.A=function(M){return(M=M().shift(),this.i()).length||this.R().length||(this.i=this.R=void 0),M},function(M,b){b.K.splice(0,0,M)}),ua=[],L=[],sM=[],C=[],UM=[],Wt=function(M){M.h=(M.pz=U(M,M.O(127))<<24|U(M,M.O(127))<<16|U(M,M.O(127))<<8|U(M,M.O(127)),void 0)},la=(I=r.prototype,function(M,b,m,c,n){if((n=(M.j=false,b)[0],n)==C)M.UF=25,M.G(b);else if(n==L){c=b[1];try{m=M.U||M.G(b)}catch(Z){V(Z,M),m=M.U}c(m)}else if(n==ua)M.G(b);else if(n==T)M.G(b);else if(n==A2){try{for(m=0;m<M.cS.length;m++)try{c=M.cS[m],c[0][c[1]](c[2])}catch(Z){}}catch(Z){}(0,b[1])((M.cS=[],function(Z,X){M.PS(Z,true,X)}),function(Z){f([sM],(Z=!M.K.length,M)),Z&&Q(true,false,M)})}else{if(n==UM)return m=b[6],c=b[2],Y(234,M,b[4]?[m[0].J]:m),Y(111,M,c),M.G(b);n==sM&&(M.M=null,M.eC=[],M.I=[])}}),u={},k=N.requestIdleCallback?function(M){requestIdleCallback(function(){M()},{timeout:4})}:N.setImmediate?function(M){setImmediate(M)}:function(M){setTimeout(M,0)},T=[],gA=(I.B="toString",function(M,b,m){return(Y(127,M,(RU(((m=M.O(127),M.I)&&m<M.T?(Y(127,M,M.T),h2(M,b)):Y(127,M,b),M)),m)),M).O(111)}),QE=function(M,b,m,c,n,Z){for(n=(b=(m=((Z=(c={},K)(M),c).W=K(M),c.C=[],M.D)==M?(K(M)|0)-1:1,K(M)),0);n>3,Z.push(M,c>>8&255,c&255),void 0!=n&&Z.push(n)),M="",m&&(m.message&&(M+=m.message),m.stack&&(M+=":"+m.stack)),b.O(154)),m)){m-=(M=M.slice(0,(m|0)-3),(M.length|0)+3),M=ba(M.replace(/\\r\\n/g,"\\n")),n=b.D,b.D=b;try{l(75,b,W(M.length,2).concat(M),12)}finally{b.D=n}}Y(154,b,m)}),J,K=(I.EF=((I.Cz=false,I).dz="caller",36),function(M,b,m,c){if(M.i)return M.A(M.R);return(b=(b=M.O(127),m=b>>3,U(M,b)),M).h!=m>>3&&(M.h=m>>3,c=M.O(78),M.GD=LO([0,0,c[1],c[2]],M.pz,M.h)),b^M.GD[m&M[L].length]}),l=(r.prototype.Zk=function(M,b,m){if(3==M.length){for(m=0;3>m;m++)b[m]+=M[m];for(m=[13,8,13,12,16,5,(M=0,3),10,15];9>M;M++)b[3](b,M%3,m[M])}},function(M,b,m,c,n,Z){if(b.D==b)for(n=b.O(M),75==M?(M=function(X,v,F,p){if(v=(p=n.length,(p|0)-4>>3),n.fz!=v){n.fz=(F=[0,0,Z[1],Z[2]],v),v=(v<<3)-4;try{n.JU=LO(F,jF(v,n),jF((v|0)+4,n))}catch(G){throw G;}}n.push(n.JU[p&7]^X)},Z=b.O(160)):M=function(X){n.push(X)},c&&M(c&255),b=m.length,c=0;c<b;c++)M(m[c])}),jF=function(M,b){return b[M]<<24|b[(M|0)+1]<<16|b[(M|0)+2]<=M.T)throw[u,31];return(Y(127,M,(b|0)+8),M.I)[b>>3]},RU=function(M,b,m,c,n,Z){if(!M.U){M.s++;try{for(Z=(b=M.T,c=(m=void 0,5001),0);(M.Cz||--c)&&(M.i||(Z=M.O(127))<b);)try{n=void 0,M.i?m=M.A(M.i):(Y(99,M,Z),n=K(M),m=M.O(n)),m&&m.call?m(M):R(0,M,[u,21,n]),M.j=true,z(M,false,false)}catch(X){M.O(212)?R(22,M,X):Y(212,M,X)}c||R(0,M,[u,33])}catch(X){try{R(22,M,X)}catch(v){V(v,M)}}M.s--}},z=(((I=r.prototype,I.Il=function(M,b,m){return M^((b^=b<>17,b=(b^b<<5)&m)||(b=1),b)},I.hU=function(){return Math.floor(this.F())},I.Yg=function(M,b,m,c,n){for(n=c=0;c<M.length;c++)n+=M.charCodeAt(c),n+=n<>6;return c=new Number((M=(n+=n<>11,n)+(n<>>0,M&(1<>>b)%m,c},I.al=function(M,b,m,c){for(;m--;)127!=m&&99!=m&&b.M[m]&&(b.M[m]=b[c](b[M](m),this));b[M]=this},I).F=(window.performance||{}).now?function(){return this.F8+window.performance.now()}:function(){return+new Date},I).vS=function(M,b,m,c,n,Z){for(n=(m=c=0,[]);m<M.length;m++)for(c+=b,Z=Z<<b|M[m];7>c&255);return n},I.Rl=function(){return Math.floor(this.OF+(this.F()-this.v))},r.prototype.G=function(M,b){return b={},M={},function(m,c,n,Z,X,v,F,p,G,O,D,w,x,P,B,t,H){b=(F=b,M);try{if(D=m[0],D==yE)return F==M?59:83;if(D==T){X=m[1];try{for(t=(p=[],0);t<X.length;){if((B=(P=(x=S[X.charAt(t++)],t<X.length?S[X.charAt(t)]:0),++t,t<X.length?S[X.charAt(t)]:64),++t,v=t<X.length?S[X.charAt(t)]:64,++t,null==x||null==P)||null==B||null==v)throw Error();64!=(p.push(x<>4),B)&&(p.push(P<>2),64!=v&&p.push(B<<6&192|v))}Y(78,(this.T=(this.I=p,this.I).length<<3,this),[0,0,0])}catch(E){R(17,this,E);return}RU(this)}else if(D==C)m[1].push(this.O(103).length,this.O(75).length,this.O(154),this.O(76).length),Y(111,this,m[2]),this.M[174]&&gA(this,this.O(174));else{if(D==L){this.D=(w=(G=W((p=m[2],(this.O(103).length|0)+2),2),this).D,this);try{O=this.O(217),0<O.length&&l(103,this,W(O.length,2).concat(O),15),l(103,this,

This seems to indicate that your web app script url is incorrect in your app, or that you have not correctly published your web app to a new version. Check these issues.

Hi TIMAI2,

I have checked and new web app url taken even its seems same error. and from that URL i can send data to sheet by suing browser.

From what you say, your "doGet(e)" script is working in your browser, but your doPost(e) script is not working in your app.

  1. change your app to use doGet(e) ?

image

  1. To keep using doPost(e) see here

Blocks like this:

image

and edit your script to match.