13

我会在 PHP 中使用带有 curl 的 Youtube API v3 上传视频,如下所述:https ://developers.google.com/youtube/v3/docs/videos/insert

我有这个功能

function uploadVideo($file, $title, $description, $tags, $categoryId, $privacy)
{
    $token = getToken(); // Tested function to retrieve the correct AuthToken

    $video->snippet['title']         = $title;
    $video->snippet['description']   = $description;
    $video->snippet['categoryId']    = $categoryId;
    $video->snippet['tags']          = $tags; // array
    $video->snippet['privacyStatus'] = $privacy;
    $res = json_encode($video);

    $parms = array(
        'part'  => 'snippet',
        'file'  => '@'.$_SERVER['DOCUMENT_ROOT'].'/complete/path/to/'.$file
        'video' => $res
    );

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'https://www.googleapis.com/upload/youtube/v3/videos');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $parms);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '.$token['access_token']));
    $return = json_decode(curl_exec($ch));
    curl_close($ch);

    return $return;
}

但它返回这个

stdClass Object
(
    [error] => stdClass Object
        (
            [errors] => Array
                (
                    [0] => stdClass Object
                        (
                            [domain] => global
                            [reason] => badContent
                            [message] => Unsupported content with type: application/octet-stream
                        )

                )

            [code] => 400
            [message] => Unsupported content with type: application/octet-stream
        )

)

该文件是 MP4。

任何人都可以帮忙吗?

4

4 回答 4

25

更新版本:现在使用自定义上传 url 并在上传过程中发送元数据。整个过程需要2个请求:

  1. 获取自定义上传位置

    首先,对上传 url 发出 POST 请求:

    "https://www.googleapis.com/upload/youtube/v3/videos"
    

    您将需要发送 2 个标头:

    "Authorization": "Bearer {YOUR_ACCESS_TOKEN}"
    "Content-type": "application/json"
    

    您需要发送 3 个参数:

    "uploadType": "resumable"
    "part": "snippet, status"
    "key": {YOUR_API_KEY}
    

    您需要在请求正文中发送视频的元数据:

        {
            "snippet": {
                "title": {VIDEO TITLE},
                "description": {VIDEO DESCRIPTION},
                "tags": [{TAGS LIST}],
                "categoryId": {YOUTUBE CATEGORY ID}
            },
            "status": {
                "privacyStatus": {"public", "unlisted" OR "private"}
            }
        }
    

    从此请求中,您应该会在标题中获得带有“位置”字段的响应。

  2. POST 到自定义位置以发送文件。

    对于上传,您需要 1 个标头:

    "Authorization": "Bearer {YOUR_ACCESS_TOKEN}"
    

    并将文件作为您的数据/正文发送。

如果您仔细阅读他们的客户端是如何工作的,您会看到他们建议您在返回代码 500、502、503 或 504 的错误时重试。显然,您希望在重试之间有一个等待期和最大重试次数。它每次都在我的系统中工作,尽管我使用的是 python & urllib2 而不是 cURL。

此外,由于自定义上传位置,这个版本是上传恢复能力,虽然我还没有需要。

于 2012-11-27T02:55:47.263 回答
1

不幸的是,我们还没有从 PHP 上传 YouTube API v3 的具体示例,但我的一般建议是:

  • 使用PHP 客户端库而不是 cURL。
  • 将您的代码基于为 Drive API 编写的这个示例。由于 YouTube API v3 与其他 Google API 共享通用 API 基础架构,因此上传文件等操作的示例在不同服务之间应该非常相似。
  • 查看Python 示例,了解需要在 YouTube v3 上传中设置的特定元数据。

一般来说,你的 cURL 代码有很多不正确的地方,我无法完成修复它所需的所有步骤,因为我认为使用 PHP 客户端库是一个更好的选择。如果您确信要使用 cURL,那么我会请其他人提供具体指导。

于 2012-11-07T20:23:43.457 回答
0

一个python脚本:

# categoryId is '1' for Film & Animation
# to fetch all categories: https://www.googleapis.com/youtube/v3/videoCategories?part=snippet&regionCode={2 chars region code}&key={app key}
meta =  {'snippet': {'categoryId': '1',
  'description': description,
  'tags': ['any tag'],
  'title': your_title},
  'status': {'privacyStatus': 'private' if private else 'public'}}

param = {'key': {GOOGLE_API_KEY},
         'part': 'snippet,status',
         'uploadType': 'resumable'}

headers =  {'Authorization': 'Bearer {}'.format(token),
           'Content-type': 'application/json'}

#get location url
retries = 0
retries_count = 1
while retries <= retries_count: 
    requset = requests.request('POST', 'https://www.googleapis.com/upload/youtube/v3/videos',headers=headers,params=param,data=json.dumps(meta))
    if requset.status_code in [500,503]:
        retries += 1
    break

if requset.status_code != 200:
    #do something

location = requset.headers['location']

file_data = open(file_name, 'rb').read()

headers =  {'Authorization': 'Bearer {}'.format(token)}

#upload your video
retries = 0
retries_count = 1
while retries <= retries_count:
    requset = requests.request('POST', location,headers=headers,data=file_data)
    if requset.status_code in [500,503]:
        retries += 1
    break

if requset.status_code != 200:
    #do something

# get youtube id
cont = json.loads(requset.content)            
youtube_id = cont['id']
于 2015-01-12T17:21:55.983 回答
0

我已经能够使用以下 shell 脚本将视频上传到我在 YouTube 上的频道。

#!/bin/sh

# Upload the given video file to your YouTube channel.

cid_base_url="apps.googleusercontent.com"
client_id="<YOUR_CLIENT_ID>.$cid_base_url"
client_secret="<YOUR_CLIENT_SECRET>"
refresh_token="<YOUR_REFRESH_TOKEN>"
token_url="https://accounts.google.com/o/oauth2/token"
api_base_url="https://www.googleapis.com/upload/youtube/v3"
api_url="$api_base_url/videos?uploadType=resumable&part=snippet"

access_token=$(curl -H "Content-Type: application/x-www-form-urlencoded" -d refresh_token="$refresh_token" -d client_id="$client_id" -d client_secret="$client_secret" -d grant_type="refresh_token" $token_url|awk -F '"' '/access/{print $4}')

auth_header="Authorization: Bearer $access_token"
upload_url=$(curl -I -X POST -H "$auth_header" "$api_url"|awk -F ' |\r'  '/loc/{print $2}'); curl -v -X POST --data-binary "@$1" -H "$auth_header" "$upload_url"

有关如何获取自定义变量值的信息,请参阅此类似问题。

于 2017-10-30T13:03:23.980 回答