The pictures shared by UC cannot be displayed after calling the sharing panel.

uc browser successfully calls the sharing panel and can share it. The description title is correct, but the picture is not displayed. How to set up the shared picture?

data() {
            return {
                title: "2019XXXX",
                desc: "",
                share_url: "http://XXX",
                image_url: "https://XXX",
            }
        },
        
methods: {
    shareUC() {
                const isiOS = /(iPhone|iPad|iPod)/.test(navigator.userAgent);  // 
                if (isiOS) {
                    if (ucbrowser.web_shareEX) {
                        ucbrowser.web_shareEX(
                            JSON.stringify({
                                title: this.title,
                                content: this.desc,
                                sourceUrl: this.share_url,
                                imageUrl: this.image_url,
                                source: "XXX",
                                target: ""
                            })
                        )
                    } else {
                        ucbrowser.web_share(this.title, this.desc, this.share_url, undefined, "", "XXX", this.image_url);
                    }
                }
                else {
                    ucweb.startRequest("shell.page_share", [this.title, this.desc, this.share_url, "", "", "XXX", this.image_url]);
                }
            },
}

reference is https://www.jianshu.com/p/dc9...

Apr.30,2022
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b31fac-40366.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b31fac-40366.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?