google-sites

HTML, CSS, & JavaScript on Classic Google Sites - Why Video Recording Not Working?

旧街凉风 提交于 2020-06-29 06:41:32
问题 There is this code here that I am wanting to upload to Classic Google Sites. (The code is at the very bottom of the link that you can click on.) I can get the HTML and CSS parts up and running to do the video recorder but the JavaScript part I have no idea why it is not working. The code goes in that order. I can get some JavaScript to do other stuff but not this. I type in < script > "Copied and Pasted JavaScript Code" < /script> when using the code from the site linked above but no success.

Create my own Google site template Using my own CSS [duplicate]

ε祈祈猫儿з 提交于 2020-06-27 03:48:08
问题 This question already has an answer here : How to create a custom Google Sites theme? (1 answer) Closed 2 years ago . Is there a way to create my custom Google site using my own CSS code? I have tried putting <style> but google won't allow me. I can use several inline CSS, but i have noticed that some CSS are not allowed too. e.g position:absolute; I'm asking this because i can see some websites selling Google site templates. How did they manage to do those template? What language are they

Create my own Google site template Using my own CSS [duplicate]

自古美人都是妖i 提交于 2020-06-27 03:47:26
问题 This question already has an answer here : How to create a custom Google Sites theme? (1 answer) Closed 2 years ago . Is there a way to create my custom Google site using my own CSS code? I have tried putting <style> but google won't allow me. I can use several inline CSS, but i have noticed that some CSS are not allowed too. e.g position:absolute; I'm asking this because i can see some websites selling Google site templates. How did they manage to do those template? What language are they

Can't have link in Embedded web app in Google site?

允我心安 提交于 2020-06-14 03:26:55
问题 I'm trying to integrate a google script app deployed as a web app in a Google Site. The embedding feature works well and all seems good at first. But for some reason links don't work in the embedded view. I can't find any specific topics about this. Google Script web app can be embedded every where I tried except in Google Site. And Google Site can embed every site that allow it except web app from google script.(couldn't figure out what you trying to say here...Cooper) EDIT (2) Turn out the

Google Sites: How to resize iframe based on the embedded content - Show full content instead of scrollbar

☆樱花仙子☆ 提交于 2020-02-25 11:48:25
问题 I am trying to create a google site with the google apps script where I am loading simple content from google sheet but after embedding the script url, the full content is loading within the the iframe fixed area with the vertical scrollbar. Is there any way we can dynamically change the iframe height to fit the content so that it looks like a part of the google site? Google Sites - Iframe with scrollbar 来源: https://stackoverflow.com/questions/60130123/google-sites-how-to-resize-iframe-based

Google API HTTP 401 - Token invalid - AuthSub token has wrong scope

狂风中的少年 提交于 2020-02-04 12:14:24
问题 I'm struggling with google api for a few days while sending a post request to Google sites API via C# application. First I redeem the authorization code from google's servers by a GET request: https://accounts.google.com/o/oauth2/auth? scope=email%20profile& state=security_token%3D138r5719ru3e1%26url%3Dhttps://oa2cb.mydomain/myHome& redirect_uri=http://localhost& response_type=code& client_id= // CLIENT ID here... access_type=online& approval_prompt=auto In the redirect uri I got the

Authorizing a Google apps script

和自甴很熟 提交于 2020-01-24 19:36:06
问题 Is it possible to make sure that users are not presented with an Authorize dialog when integrating a Google apps script on a google site? when the site is only exposed internally? 回答1: As mentioned, there are two use cases primarily supported by Apps Script native Apps beans: Execute as deploying user: end users don't need to authorize since accesses deployer's Apps resources Execute as end user: end users need to authorize since accesses end user's Apps resources The third use case you're