HarmonyOS HTTP cookie管理和使用?

如题:HarmonyOS HTTP cookie管理和使用?

阅读 429
1 个回答

HTTP模块没有提供cookie管理能力的api,如果需要使用cookie管理,可以使用三方库httpclient,

https://ohpm.openharmony.cn/\#/cn/detail/@ohos%2Fhttpclient

http使用cookie的demo如下

let req = http.createHttp();
req.request("http://huawei.com",{
  method:http.RequestMethod.GET,
  header:{"If-Modified-Since":"Thu, 23 May 2024 09:03:53 GMT","cookie":"domian-xxxxxxxx;KLBRSID=83a"}
},(err:BusinessError,data:http.HttpResponse)=>{
  if(!err){
    dosomething()
  }else {
    dealError()
  }
})
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
logo
HarmonyOS
子站问答
访问
宣传栏