如何通过fetchCookieSync获取Web隐私模式下指定url对应cookie的值

如何通过fetchCookieSync获取Web隐私模式下指定url对应cookie的值


HarmonyOS
2024-08-06 18:43:34
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
milchcow
import web_webview from '@ohos.web.webview';
import business_error from '@ohos.base';

try {
  // fetchCookieSync第二个参数表示获取隐私模式(true)或非隐私模式(false)下,webview的内存cookies。
  let value = web_webview.WebCookieManager.fetchCookieSync('https://www.example.com', true);
  console.log("fetchCookieSync cookie = " + value);
} catch (error) {
  let e:business_error.BusinessError = error as business_error.BusinessError;
  console.error(`ErrorCode: ${e.code},  Message: ${e.message}`);
}
分享
微博
QQ
微信
回复
2024-08-06 20:20:55
相关问题
如何清除Web隐私模式所有cookie
309浏览 • 1回复 待解决
HarmonyOS web使用隐私模式
282浏览 • 1回复 待解决
Web组件通过WebCookieManager设置获取cookie
1973浏览 • 1回复 待解决
如何通过key获取对象
197浏览 • 1回复 待解决
H5通过url scheme拉起对应应用
374浏览 • 1回复 待解决
如何为网页设置单个Cookie
241浏览 • 1回复 待解决
隐私模式设置后窗口是如何展示
1780浏览 • 1回复 待解决
stagemode 模式如何获取version信息?
1862浏览 • 0回复 待解决
设置禁止截屏隐私模式
1167浏览 • 1回复 待解决
通过webView修改iframeURL
772浏览 • 1回复 待解决
指定url图片进行下载保存
888浏览 • 1回复 待解决