I use web server to send "*.bin" file, and use "post handler" to receive data.
Code: Select all
...
$.ajax({\
url: '/echo',
type: 'POST',
data: data
...
Code: Select all
httpd_uri_t echo = {
.uri = "/echo",
.method = HTTP_POST,
.handler = echo_post_handler,
.user_ctx = NULL
};
Could someone help me please! Thanks so much!