中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序調用圖片安全API的方法

發布時間:2021-01-19 14:18:54 來源:億速云 閱讀:372 作者:小新 欄目:移動開發

小編給大家分享一下微信小程序調用圖片安全API的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

微信小程序審核拒絕,拒絕原因是用戶上傳圖片可能存在違法違規問題,程序必須有審核機制。
解決方法如下(云開發):
config.json

{
  "permissions": {
    "openapi": [
      "security.imgSecCheck"
    ]
  }
}

云函數

const cloud = require('wx-server-sdk')

cloud.init()
 
exports.main = async (event, context) => {
  const { value } = event;
  try {
    const res = await cloud.openapi.security.imgSecCheck({
      media: {
        header: {
          'Content-Type': 'application/octet-stream'},
        contentType: 'image/png',
        value: Buffer.from(value)
        }
      })
    return res;
  } catch (err) {
    return err;
  }
}

js

ChooseImage() {
    wx.chooseImage({
      count: 1, 
      sizeType: ['original', 'compressed'], 
      sourceType: ['album'], 
      success: (res) => {
        if (res.tempFiles[0] && res.tempFiles[0].size > 1024 * 1024) {
          wx.showToast({
            title: '圖片不能大于1M',
            icon: 'none'
          })
          return;
        }
        //校驗圖片

        wx.getFileSystemManager().readFile({
          filePath: res.tempFilePaths[0],
          success: buffer => {
            console.log(buffer.data)
            wx.cloud.callFunction({
              name: 'checkImg',
              data: {
                value: buffer.data
              }
            }).then(
              imgRes => {
                if (imgRes.result.errCode == '87014') {
                  wx.showToast({
                    title: '圖片含有違法違規內容',
                    icon: 'none'
                  })
                  return
                } else {
                  //圖片正常

                  if (this.data.imgList.length != 0) {
                    this.setData({
                      imgList: this.data.imgList.concat(res.tempFilePaths)
                    })
                  } else {
                    this.setData({
                      imgList: res.tempFilePaths
                    })
                  }


                }

              }
            )
          },
          fail: err => {
            console.log(err)
          }
        })

      }
    });
  },

以上是“微信小程序調用圖片安全API的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通城县| 保康县| 卫辉市| 甘孜| 莎车县| 崇阳县| 奇台县| 大丰市| 邯郸县| 甘孜| 柞水县| 武威市| 吐鲁番市| 惠水县| 丹寨县| 九江市| 北川| 云梦县| 苗栗县| 都昌县| 富蕴县| 抚远县| 从化市| 徐水县| 桐城市| 千阳县| 高邑县| 建昌县| 九江县| 沾化县| 修文县| 岗巴县| 黑水县| 特克斯县| 探索| 岢岚县| 司法| 清镇市| 清涧县| 得荣县| 怀远县|