GASでリダイレクト
GAS
で
リダイレクト
する方法あるんだろうか
yosider.icon
試していませんが、こういうのはどうでしょうか?
takker.icon
<meta http-equiv="refresh"
を使う
https://gyazo.com/982add127a65e746d2ed74046f81d70d
X-Frame-Options
に引っかかるらしいです
yosider.icon
生成したページで
location.href='https://scrapbox.io/...'
を即座に実行する
https://gyazo.com/edf68b97a7b3d48d4b468388bac62c52
サーバーサイドで実行されるので
window object
にはアクセスできないようです
yosider.icon
Which JavaScript features are available in Google Apps scripts? - Stack Overflow
window.open
を使う
window.open(url, '_self')
;
from
リダイレクトの方法 - Qiita
from
今日のページを開くGAS
Qiita.icon