使用api v3在博客中创建新的视频帖子

时间:2017-07-18 10:58:57

标签: blogger google-api-php-client

这就是我在博客博客上创建新帖子的方式。

public function upload($file, $path, $title, $description)
{
    $video_file = WWW_ROOT . '../' . $path . $file;

    $client = new Google_Client();
    $client->setClientId($this->GOOGLE_CLIENT_ID);
    $client->setClientSecret($this->GOOGLE_CLIENT_SECRET);
    $client->setAccessToken($this->access_token);

    $postData = new \Google_Service_Blogger_Post();
    $postData->setTitle($title);
    $postData->setContent($description);

    $service = new Google_Service_Blogger($client);
    $new = $service->posts->insert($this->blogger_id, $postData);

    if ($new) {
        $response['status'] = true;
        $response['video_id'] = $new->getId();
        $response['video_url'] = $new->getUrl();
    } else {
        $response['status'] = false;
    }

    return $response;
}

这是一个标题和内容很好的新帖子。但是,我应该如何使用它创建一个包含视频$video_file

的帖子

我不想使用youtube并在此处嵌入视频代码。我想使用博主的视频上传功能。

0 个答案:

没有答案