How to upload html page through webwrite?

1 visualización (últimos 30 días)
Abhishek Ballaney
Abhishek Ballaney el 12 de Abr. de 2017
Comentada: Guillaume el 12 de Abr. de 2017
How to upload html page through webwrite function?

Respuestas (1)

Guillaume
Guillaume el 12 de Abr. de 2017
Editada: Guillaume el 12 de Abr. de 2017
Same as your previous question, this all depends on the web server you want to upload to. If it's the thingspeak server, I don't think it supports that. But as I said before, I've never used it, this is just based on a quick reading of the thingspeak doc.
It's a strange scenario that you want to upload html to a web server from a client. Usually, it's the server that sends html to a client.
  2 comentarios
Abhishek Ballaney
Abhishek Ballaney el 12 de Abr. de 2017
HTML is basically text. So we can send from client to server also. How to handle this case?
Guillaume
Guillaume el 12 de Abr. de 2017
Again, it all depends on the server. There's no universal method to send text to a server. By definition a server sends information to the client, not the other way round.
Now, using a REST API a server can receive information from a client. The server will define how that information is to be sent, and how it is to be encoded.
If you have a url that expects some html file, then possibly:
htmlcontent = fileread('yourhmtlfile.html')
webwrite(someurl, hmtlcontent, weboptions('MediaType', 'text/html'))
may work, if that's how the server expects it. It won't otherwise. The documentation of whichever service you want to use should tell you how it expects to receive data.

Iniciar sesión para comentar.

Comunidades de usuarios

Más respuestas en  ThingSpeak Community

Categorías

Más información sobre Read Data from Channel en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by