遇到的问题
Obsidian 1.6.7
Templater 2.7.1
最近使用插件 Templater 的 tp.web.daily_quote() 报错“Error generating daily quote”
预期的效果
显示正常的内容
已尝试的解决方案
重新安装插件 Templater
Obsidian 1.6.7
Templater 2.7.1
最近使用插件 Templater 的 tp.web.daily_quote() 报错“Error generating daily quote”
显示正常的内容
重新安装插件 Templater
因为要往 https://api.quotable.io/random
发送请求, 但这个站的证书过期了
浏览器手动打开这个 url (在 2024-09-13 这几天) 也不行, 如图
感觉这几天出现了好多次这个情况, 不知道咋了
最简单的解决办法是等两天…
实在忍不了, 可以进 .obsidian/plugins/templater-obsidian/main.js
查找到
// 唯一一句
const response = await this.getRequest("https://api.quotable.io/random");
// 给改成
const response = await this.getRequest("http://api.quotable.io/random");
先用着