WeChat 미니 프로그램은 검토 결과 거부되었습니다. 거부 이유는 사용자가 업로드한 사진에 불법적인 문제가 있을 수 있으며 프로그램에 감사 메커니즘이 있어야 한다는 것이었습니다.
해결 방법은 다음과 같습니다(클라우드 개발):
config.json
{ "permissions": { "openapi": [ "security.imgSecCheck" ] } }
Cloud function
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) } }) } }); },
추천 튜토리얼: "WeChat Mini Program"
위 내용은 WeChat 애플릿은 이미지 보안 API를 호출합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!