抖音账号矩阵系统,短视频账号矩阵系统源码, 短视频矩阵是一种常见的视频编码标准,它通过将视频分成多个小块并对每个小块进行压缩来实现高效的视频传输。在本文中,我们将介绍短视频矩阵的原理和实现,并提供示例代码。
目录
文章目录
前言
一、矩阵号系统是什么?
二、使用步骤
1.创建推广项目
2.多账号授权
3.企业号智能客服系统
总结
前言
短视频多账号矩阵系统,通过多账号一键授权管理的方式,为运营人员打造功能强大及全面的“矩阵式“管理平台。使用矩阵系统也能保证账号的稳定性,降低账号的风险性,因而矩阵号目前也逐渐成为各商家账号经营的标配。
一、矩阵号系统是什么?
账号矩阵是通过不同平台不同账号之间建立联系,通过将同一品牌下不同平台不同账号的粉丝流量进行账号互通,根据平台不同的规则及内容,来输出企业及品牌信息,通过矩阵的形式提升粉丝数量及账号商业价值。矩阵号的运营模式可以是多平台、多账号,也可以是单平台,多账号。
目前常用做短视频矩阵的平台有抖音、快手、百家号、西瓜、头条等几大热流平台,通过调查分析,目前抖音坐拥亿级流量,成为商家流量必争之地。所以我们下面分析也主要以抖音短视频平台为例。
{
//携带状态
$state = [
'agent_id' => $this->manager['ds_agent_id'],
's_id' => $this->sid,
'platform' => $platform,
'host' => $this->response->responseHost(),
];
/************生成url************/
switch ($platform) {
case 'dou_yin' :
$plugin = new App_Plugin_Douyin_OpenPlugin($this->manager['ds_agent_id']);
$app_info = $plugin->getAppInfo();
$redirect_uri = $app_info['douyin_domain'] . '/dydqtclient/user/dyAccountLogin';
$url = $plugin->getOauthCode($redirect_uri, $app_info['douyin_scope'], json_encode($state));
$link = $state['host']."/auth/link/?suid=".$this->suid;
break;
case 'kuai_shou' :
$plugin = new App_Plugin_Kuaishou_OpenPlugin($this->manager['ds_agent_id']);
$app_info = $plugin->getAppInfo();
二、使用步骤
(1) 创建需要推广的产品信息,且选择素材组合模式
(2)场景组合数:可自定义素材场景数量
(3)可自定义设置素材生成的视频长度及数量,按需生成
代码如下(示例):
$redirect_uri = $app_info['kuaishou_domain'] . '/dydqtclient/user/ksAccountLogin';
$url = $plugin->getMobOauthCode($redirect_uri, $app_info['kuaishou_scope'], json_encode($state));
break;
case 'xi_gua' :
$plugin = new App_Plugin_Douyin_OpenPlugin($this->manager['ds_agent_id']);
$app_info = $plugin->getAppInfo();
$xigua_scope = plum_parse_config('xigua_scope', 'douyin');
$redirect_uri = $app_info['douyin_domain'] . '/dydqtclient/user/xtAccountLogin';
$url = $plugin->getXiguaCode($redirect_uri, join(',', $xigua_scope), json_encode($state));
break;
case 'tou_tiao' :
$plugin = new App_Plugin_Douyin_OpenPlugin($this->manager['ds_agent_id']);
$app_info = $plugin->getAppInfo();
$toutiao_scope = plum_parse_config('toutiao_scope', 'douyin');
$redirect_uri = $app_info['douyin_domain'] . '/dydqtclient/user/xtAccountLogin';
$url = $plugin->getToutiaoCode($redirect_uri, join(',', $toutiao_scope), json_encode($state));
break;
2.多账号授权
多账号授权支持多平台,如:抖音、快手、百家号、B站。西瓜。头条等几个主流短视频平台,支持账号分组,账号数据统计,及粉丝分布及画像信息查看。
代码如下(示例):// Import classes:
//import com.douyin.open.ApiException;
//import com.douyin.open.api.OauthCodeApi;
OauthCodeApi apiInstance = new OauthCodeApi();
String clientKey = "clientKey_example"; // String | 应用唯一标识
String responseType = "code"; // String | 设置为'code'这个字符串即可
String scope = "scope_example"; // String | 应用授权作用域,多个授权作用域以英文逗号(,)分隔
String redirectUri = "redirectUri_example"; // String | 授权成功后的回调地址,必须以http/https开头。域名必须对应申请应用时填写的域名,如不清楚请联系应用申请人。
String state = "state_example"; // String | 用于保持请求和回调的状态
try {
apiInstance.platformOauthConnectGet(clientKey, responseType, scope, redirectUri, state);
} catch (ApiException e) {
System.err.println("Exception when calling OauthCodeApi#platformOauthConnectGet");
e.printStackTrace();
}
openapi sdk(包括 php、python、java)已不再维护,请自行实现 http 客户端。
该处使用的url网络请求的数据。
3.企业号智能客服系统
支持多账号管理,涵盖私信对话,评论自动回复,自动私信意向客户,意向客户收集等。
代码如下(示例):
素材类型输出
*/
private function output_materail_type($da_id, $type, $video_mode){
$material_model = new App_Model_Douyin_MysqlVideoMaterialStorage($this->sid);
$template_model = new App_Model_Douyin_MysqlVideoTempVideoStorage($this->sid);
$temp_video_count = $template_model->getTempVideoCountByItem($da_id);
$type_list = [
'video' => [
'type' => 1,
'title' => '视频素材('.($material_model->getMaterialCountByVideo($da_id, 1)).')',
'url' => "/dydqtshoppc/video/materialList?dv_id={$da_id}&type=1",
],
'image' => [
'type' => 3,
'title' => '图片素材('.($material_model->getMaterialCountByVideo($da_id, 3)).')',
'url' => "/dydqtshoppc/video/materialList?dv_id={$da_id}&type=3",
],
'audio' => [
'type' => 2,
'title' => '音频素材('.($material_model->getMaterialCountByVideo($da_id, 2)).')',
'url' => "/dydqtshoppc/video/materialList?dv_id={$da_id}&type=2",
],
'title' => [
'type' => 4,