Skip to content
Advertisement

How to MODIFY a Google Docs document via API using search-and-replace?

I need an example of how to modify an existing document with existing text in Google Docs via API. The documentation only shows how to insert and delete text, but not how to update. Have been looking frantically on the web to find examples or a direction on how to do it but without luck.

Advertisement

Answer

Finally figured it out myself.

First, follow this video to prepare authentication to the Google Docs API (even though it’s about Google Sheets but the process is basically the same). Basically it consists of these steps:

  • create project in Google Developer Console
  • enable Google Docs API
  • create credentials, including a service account for programmatic access
  • share your document with the service account client email address
  • install Google API’s PHP client: composer require google/apiclient

Then create a script like the following:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement