https://developers.weixin.qq.com/doc/service/guide/h5/jssdk.html
根据文档中的描述,出现config:fail错误(这是由于传入的config参数不全导致,请确保传入正确的appId、timestamp、nonceStr、signature和需要使用的jsApiList)。但我排查了config中的信息,{
"appId": "wx2b03d8497c45a4",
"nonceStr": "7d5zzijiuxajkw",
"timestamp": "1764059795",
"signature": "cc75925012d425a86f802475d59e11c89d56d8",
"jsApiList": ["menu:share:timeline", "updateTimelineShareData", "updateAppMessageShareData", "menu:share:appmessage", "menu:share:qq", "startRecord", "stopRecord", "onVoiceRecordEnd", "playVoice", "pauseVoice", "stopVoice", "onVoicePlayEnd", "uploadVoice", "downloadVoice", "chooseImage", "imagePreview", "uploadImage", "downloadImage", "translateVoice", "getNetworkType", "openLocation", "geoLocation", "hideOptionMenu", "showOptionMenu", "hideMenuItems", "showMenuItems", "hideAllNonBaseMenuItem", "showAllNonBaseMenuItem", "closeWindow", "scanQRCode", "getBrandWCPayRequest", "openProductViewWithPid", "batchAddCard", "chooseCard", "batchViewCard"],
"openTagList": ["wx-open-launch-app"]
}
appId、timestamp、nonceStr、signature和需要使用的jsApiList的信息都填写了。为什么还会出现这种情况呢?

如何判断我的jsApiList中的接口实际存在于config中?