I was working on a web app in google app script but while passing parameters to the URL it didn't work.
'''
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
/**Some Code here*/
<form id="formsearch" class="col s12" action="<?!=ScriptApp.getService().getUrl()?views=log);?>">
/**Some Code here*/
</form>
</body>
</html>
'''
Resulted url: https://script.google.com/macros/s/AKfycbwo0KN6CaTT3v650rtjrAGwVVp17NxnFtcF9Wpp3-CL/dev?
or
with other tries: https://script.google.com/macros/s/AKfycbwo0KN6CaTT3v650rtjrAGwVVp17NxnFtcF9Wpp3-CL/devviews=log?
Is there any another way of doing it ? and how to solve this?
ScriptApp.getService().getUrl() + "?views=log"
– Alan Wells