I’ve activated our app’s image moderation according to the documentation (Filter and moderation | Chat Platform API | Sendbird Docs) and have likewise taken the recommended values there:
"image_moderation": {
"type": 1,
"soft_block": false,
"limits": {
"medical": 5,
"violence": 3,
"spoof": 5,
"racy": 4,
"adult": 3
},
"check_urls": true
},
I assume once these settings are set, calls to the updateCurrentUserInfoWithProfileImage
for example should be moderated. However, this does not appear to be the case. Do we have to talk with somebody to ‘truly’ activate this service? I figured a POST on the moderation endpoint would be enough, but images are definitely not being moderated, at least when compared to values shown by Google’s ‘try it’ tool. (Try it! | Cloud Vision API | Google Cloud)
I guess I should also ask here about the profanity moderation - would this also require additional activation beyond the API?