githen/laravel-yidun

基于laravel的网易易盾内容安全

v1.1.13 2024-09-20 09:59 UTC

README

基于laravel的网易易盾内容安全

image image image

易盾检测融媒体解决方案_开发文档

安装

composer require githen/laravel-yidun:~v1.1.0

# 迁移配置文件
php artisan vendor:publish --provider="Githen\LaravelYidun\Providers\YidunServiceProvider"

配置文件说明

在config/logging.php中添加yidun日志配置项

'yidun' => [
    'driver' => 'daily',
    'path' => storage_path('logs/yidun/yidun.log'),
    'level' => 'debug',
    'days' => 7,
    'permission' => 0770,
],

生成yidun.php上传配置文件

<?php
return [
    /*
    |--------------------------------------------------------------------------
    | 网易易盾配置
    |--------------------------------------------------------------------------
    |
    */
    // 产品秘钥
    'secret_id' => '',
    'secret_key' => '',
    'log_channel' => 'yidun',//写入日志频道,空不写入
    // 融媒体解决方案
    'media_solution' => [
        'callback_url' => config('app.url').'/yidun/media/callback',// 融媒体回调地址 未设置或者空,不触发回调
        'callback_target' => \App\Extend\Yidun\Media::class,// 融媒体回调处理类 未设置或者空,不触发
    ]
];