Page 1 of 1

【已解决】关于tuyaos的http请求问题.

Posted: 2023年 Nov 9日 13:37
by 15158693303

你好,我下载了社区里"https://www.tuyaos.com/viewtopic.php?p=8025#p8025"这篇文章中的示例代码,运行后发现提示"Failed to get HTTP response header:-12",也就是运行到

Code: Select all

// 获取HTTP响应头
http_error = http_get_response_hdr(session, &response);
if (http_error != WM_SUCCESS) {
    TAL_PR_DEBUG("Failed to get HTTP response header err:%d", http_error);
    http_close_session(&session);
    return;
}

然后就退出了.并没有进入第三方api,这是什么情况?我发现HTTPPOST方法会有这个问题.HTTPGET能正常调用第三方api,


Re: 关于tuyaos的http请求问题.

Posted: 2023年 Nov 20日 17:17
by yingtao_33

如果使用post, head 中的 content 是需要有值的,不能为空


Re: 关于tuyaos的http请求问题.

Posted: 2023年 Nov 30日 18:13
by 15158693303

非常感谢..