私のスクリプト:
var Url = 'http://readonline.egscans.com/Remnant/Chapter_036_[END]';
var response = UrlFetchApp.fetch(Url).getContentText();
スクリプトを実行すると、このエラーが発生します。
"無効な引数: http://readonline.egscans.com/Remnant/Chapter_036_[END] "
私のスクリプト:
var Url = 'http://readonline.egscans.com/Remnant/Chapter_036_[END]';
var response = UrlFetchApp.fetch(Url).getContentText();
スクリプトを実行すると、このエラーが発生します。
"無効な引数: http://readonline.egscans.com/Remnant/Chapter_036_[END] "
次のように、encodeURIComponent を使用して URL をエンコードできます。
var Url = encodeURIComponent('http://readonline.egscans.com/Remnant/Chapter_036_[END]');
参照: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/encodeURIComponent