Short video seo matrix + Douyin applet source code development solution (1)

This solution is mainly aimed at enterprises with long product user transaction decision-making cycle/non-standard customization, such as: real estate, automobile, finance, consulting services, advertising design, network technology companies, TOB sales industries, etc.

Based on different business scenarios, the solution has been fully updated, and 8 new capabilities have been added, including account management, video editing, video distribution, mini-program creation, mini-program mounting, clue collection, direct keyword search, and intelligent customer service. By empowering enterprise employee accounts, cooperation accounts, and personal account homepage mounts, distribution configuration of reserved funds, and live preview streams, we can go deep into the 4 scenarios of [live broadcast room] + [short video] + [search] + [reserved funds], and provide services for enterprises. Plan precise traffic distribution to low-cost return leads.

 mounted value

Public domain traffic is a characteristic channel of the open platform, which provides developers with higher-quality applications. Mounting allows more applets to be distributed and displayed by creators in short videos and live broadcast content. Distributed through public domain traffic, continuous Get new users.

Development value of short video matrix system:

1. Batch content creation, reducing the operator’s creation time and improving the creation effect

2. Batch distribution, one-click creation of distribution tasks to avoid operational omissions

3. Multi-platform account management, one-stop account management, efficient enterprise collaboration

4. Small program mounting, multi-traffic entry distribution, helping enterprises convert leads

5. Intelligent customer service, 7*24 hours online customer service, real-time contact with users

 Technology development and realization: mini program sharing

request parameters

name

type

Is it required?

describe

example value

access_token

string

yes

API call certificate

0801****************

ma_app_id

string

yes

Applet ID

tt**************

app_name

string

yes

Host name, optional douyin, douyinlite

douyin

path

string

no

The path of the Mini Program page entered through the URL Link must be the page of the published Mini Program and cannot carry query. When the path is empty, it will jump to the home page of the applet.

pages/index

query

string

no

The query (json format) when entering the Mini Program through the URL Link, if not, please fill in {}. Maximum 1024 characters, only numbers, uppercase and lowercase English and some special characters are supported: `{}!#$&'()*+,/:;=?@-._~%``.

{"id":"123***789"}

expire_time

int64

yes

Expiration time of expired URL Link. It is a Unix timestamp, and the actual expiration time is the number of hours from the current time, rounded up. The maximum interval is 180 days.

1665158399

$row = self::$register_model->getRow(self::$sr_where);

if ($row) {
    //        $row['status'] = 3;

    $thirdInfo = $this->getCateById($row['sr_category_code']);
    $secondInfo = $this->getCateById($thirdInfo->Spid);
    $firstInfo = $this->getCateById($thirdInfo->Fpid);
    $row['cate_name'] = $firstInfo->Name . '-->' . $secondInfo->Name . '-->' . $thirdInfo->Name;

    $row['sr_registered_province_name'] = $this->area_obj->findCityNameByCode($row['sr_registered_province_code'])[0]['aa_name'];
    $row['sr_registered_city_name'] = $this->area_obj->findCityNameByCode1($row['sr_registered_city_code']);

    $province_id = $row['sr_province_id'];
    $city_id = $row['sr_city_id'];

    $third_id = $row['sr_category_code'];
    $second_id = $thirdInfo->Spid;
    $first_id = $thirdInfo->Fpid;
} else {
    $province_id = 0;
    $city_id = 0;

    $third_id = 0;
    $second_id = 0;
    $first_id = 0;
}

$this->output['third_id'] = $third_id;
$this->output['second_id'] = $second_id;
$this->output['first_id'] = $first_id;
$this->output['province_id'] = $province_id;
$this->output['city_id'] = $city_id;
$this->output['row_info'] = $row;
$this->displaySmarty('dydqtshoppc/register/register.html');

Guess you like

Origin blog.csdn.net/wangwentao611/article/details/131476211