/**
* get the HTTP reauest handle
* @code
* asyn_http_req_t req;
* http_request_t internal_req;
*
* req.http_request = &internal_req;
* req.req_method = GET;
* internal_req.nhead = internal_req.nbody = 0;
* strcpy(internal_req.url, "http://www.google.cn");
*
* if (vm_asyn_http_req(&req, http_hook_callback, http_state_callback) == ASYN_HTTP_REQ_ACCEPT_SUCCESS)
* {
* VMINT handle = 0;
* vm_get_asyn_http_req_handle(&req, &handle); // get the HTTP handle
* }
* @endcode
* @param[in] request http request
* @param[out] handle pointer to the buffer that receives the HTTP handle
* @return return code or error code
*
* @retval VM_GET_AHH_SUCCESS - succeed to get the handle
* @retval VM_GET_AHH_NO_COMM - can not find the HTTP handle
* @retval VM_GET_AHH_ERROR_PARAM - invalid parameter
*/
VMINT vm_get_asyn_http_req_handle(asyn_http_req_t* request, VMINT* handle);
/**
* Add HTTP header, the memory space of name, value should be maintained by application.
* Invoke this interface before vm_asyn_http_req.
* NOTE: length of name and value together should not exceed 400 bytes, otherwise, there may be error.
*
* @param[in] handle HTTP handle.
* @param[in] name HTTP header name.
* @param[in] value HTTP header value.
*
* @return Succeed or not.
*/
VMINT vm_http_add_header(VMINT handle, VMCHAR* name, VMCHAR* value);
vm_http_add_header 函数参数中含有handle,又要求在vm_asyn_http_req函数前使用,例子中可以看到,vm_asyn_http_req函数调用后才能得到handle,表示相当疑惑,百般实验没有成功,求指点。
有奖活动 | |
---|---|
【EEPW电子工程师创研计划】技术变现通道已开启~ | |
发原创文章 【每月瓜分千元赏金 凭实力攒钱买好礼~】 | |
【EEPW在线】E起听工程师的声音! | |
“我踩过的那些坑”主题活动——第001期 | |
高校联络员开始招募啦!有惊喜!! | |
【工程师专属福利】每天30秒,积分轻松拿!EEPW宠粉打卡计划启动! | |
送您一块开发板,2025年“我要开发板活动”又开始了! | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
多组DCTODC电源方案被打赏50分 | |
【我踩过的那些坑】STM32cubeMX软件的使用过程中的“坑”被打赏50分 | |
新手必看!C语言精华知识:表驱动法被打赏50分 | |
【我踩过的那些坑】杜绑线问题被打赏50分 | |
【我踩过的那些坑】STM32的硬件通讯调试过程的“坑”被打赏50分 | |
【我踩过的那些坑】晶振使用的问题被打赏100分 | |
【我踩过的那些坑】电感选型错误导致的处理器连接不上被打赏50分 | |
【我踩过的那些坑】工作那些年踩过的记忆深刻的坑被打赏10分 | |
【我踩过的那些坑】DRC使用位置错误导致的问题被打赏100分 | |
我踩过的那些坑之混合OTL功放与落地音箱被打赏50分 |