Is it possible to have a free web service that will check the page and send it its HTML code?

I just asked if it was possible to write a verification code for a web page and run it from a free web server, and one supporter replied and said that it was possible and suggested that I used the Google App Engine service .

But he also said that there are no files, so I will have to work with their database.

I wonder if there is no such function as creating files on this free web server, then is it possible to run code from this free web server that will check the web page every time, write its HTML code and send it to my mailbox?

0
source share
1 answer

This is entirely possible in Google AppEngine.

I'm not sure what you mean by "no files" in GAE: there is definitely access to files, but in "READ ONLY" mode.

What you need to do is get the remote WEB page (via the urlfetch API) and use the email API to send.

+1
source

Source: https://habr.com/ru/post/1723070/


All Articles