Short video seo matrix, keyword screen system source code development and deployment

 Short video seo, short video screen dominance, Douyin keyword search, hot store code user contribution tasks

User Contribution Task Description:

The user contribution task is that the merchant can create a video publishing task, and the user participates in the task, helping the merchant to scan the code to publish the video, and carry the merchant's POI address, topic, title, etc., to help the merchant increase keyword search popularity and SEO ranking.

Create contribution task function development

Scope: task.posting.create needs to apply for permissions and does not require user authorization

Interface Description

Basic Information

name

describe

HTTP URL

https://open.douyin.com/task/posting/create/

HTTP Method

POST

Scope

task.posting.create

permission request

  • Request permission is required. path:
    • Mobile/web application: Douyin Open Platform Console > Application Details > Permission Management > Ability Lab > Contribution Task Permission

Development code display:

$uri    = self::GATEWAY.'/platform/oauth/connect/';
$scope  = trim($scope, ',');
$params = [
    'client_key'    => $this->client_key,
    'response_type' => 'code',
    'scope'         => $scope,
    'redirect_uri'  => $redirect_uri,
];

if (!is_null($state))
    $params['state'] = $state;

$code   = $uri."?".http_build_query($params);
return $code;

Guess you like

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