I'm new to Golang so sorry if the question seems stupid.
At the end of the page they provide the instructions of how to do it using different languages, but unfortunately not with Go. I found the following library -
https://github.com/googleapis/google-api-go-client - which seems to be right for the task but I'm not sure how to use it properly - all I came up with is:
ctx := context.Background()
indexingService, err := indexing.NewService(ctx)
But I don't know how to send the request or how to include the body into it (and I'm not sure about the part that I wrote as well, to be honest).
Maybe someone has already had some experience with it and can point me to the right direction?