在安卓版logseq中无法通过fetch获取网页内容

安卓版logseq中执行代码:

fetch(‘http://www.baidu.com’)
.then(response => response.text())
.then(html => {
logseq.api.show_msg(html.toString());
}).catch(e=>logseq.api.show_msg(e.stack,‘error’))

报错Failed to fetch

在电脑版中则可以正常显示

请各位高手指点,不胜感激!!!

运行js代码用的是这个工具:

我尝试用whatwg-fetch连接,依然报错。