如何通过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
369浏览 • 1回复 待解决
HarmonyOS web使用隐私模式
306浏览 • 1回复 待解决
Web组件通过WebCookieManager设置获取cookie
2041浏览 • 1回复 待解决
如何通过key获取对象
249浏览 • 1回复 待解决
如何为网页设置单个Cookie
293浏览 • 1回复 待解决
隐私模式设置后窗口是如何展示
1816浏览 • 1回复 待解决
stagemode 模式如何获取version信息?
1908浏览 • 0回复 待解决
H5通过url scheme拉起对应应用
428浏览 • 1回复 待解决
设置禁止截屏隐私模式
1208浏览 • 1回复 待解决
web组件之cookie使用
1043浏览 • 1回复 待解决
通过webView修改iframeURL
819浏览 • 1回复 待解决