Contenidos
Revisar el post más actualizado: https://www.jesusninoc.com/06/04/enviar-datos-a-un-formulario-de-google-docs-desde-powershell-pasos-version-04-06-2021/
Crear formulario en Google Docs
Ver nombre de la caja de texto del formulario
Ejecutar script llamando método POST
1 2 3 |
$postParams = @{'entry.1681544078'='hola2'} $web=Invoke-WebRequest -Uri 'https://docs.google.com/forms/d/e/1FAIpQLSdKkhEjsIRCAWGKCGKJN04OfYZGEI0PExx4KC44mZbwH6QJLw/formResponse' -Method Post -Body $postParams $web.StatusCode |