1

YouTube Analytics API を使用して、OAuth2 を使用して YouTube チャンネルを承認し、チャンネルが遭遇したユニークな視聴者を見つけようとしています。これは、リクエストを送信する URL です。

https://www.googleapis.com/youtube/analytics/v1/reports?ids=channel==MINE&start-date=2000-06-01&end-date=2016-04-25&metrics=uniques&access_token=XXXX

uniques上記の場合、メトリックを使用しています。ただし、これは応答として返されるものです。

Array ( 
    [error] => Array ( 
        [errors] => Array ( 
            [0] => Array ( 
                [domain] => 
                global [reason] => 
                badRequest [message] => 
                The query is not supported. 
                Check the documentation at 
                https://developers.google.com/youtube/analytics/v1/available_reports 
                for a list of supported queries. 
            ) 
        ) 
        [code] => 
        400 [message] => 
        The query is not supported. Check the documentation a 
        https://developers.google.com/youtube/analytics/v1/available_reports 
        for a list of supported queries. 
    ) 
 )

ここで何が間違っているようですか?

4

1 に答える 1