0

所以我使用YQL来获取 youtube 用户的订阅人数。

为此,我使用如下 URL 进行查询:

$query = 'https://query.yahooapis.com/v1/public/yql?q='.urlencode("SELECT * FROM xml WHERE url='http://gdata.youtube.com/feeds/api/users/{$id}'").'&format=json&callback=';

然后我解码响应并找到我正在寻找的数组条目,如下所示:

  $response = json_decode($response, true);
  $subscriber_count = $response['query']['results']['entry']['statistics']['subscriberCount'];

它工作正常,除了我不喜欢我这样做的方式:) 我的意思是,有没有办法可以subscriberCount直接从$query上面的 URL 获取值?我不需要整个 XML,只需要一个条目。

4

1 回答 1

1

您可以做的是将 YQL 返回的数据量限制为您真正感兴趣的数据,方法如下:

SELECT statistics.subscriberCount FROM xml WHERE ...

您仍然会在您感兴趣的数字周围有一些结构化的 XML/JSON 元素,但至少它更少(见下文)。不确定这是否是您想要的?

<query xmlns:yahoo="http://www.yahooapis.com/v1/base.rng"
    yahoo:count="1" yahoo:created="2011-01-06T23:21:32Z" yahoo:lang="en-US">
    <results>
        <entry xmlns="http://www.w3.org/2005/Atom">
            <yt:statistics
                xmlns:yt="http://gdata.youtube.com/schemas/2007" subscriberCount="7"/>
        </entry>
    </results>
</query>
于 2011-01-06T23:23:09.030 回答