用媒体方法聚焦api寻呼

时间:2014-02-04 08:45:23

标签: php api

我正在使用limelight内容API来检索我的所有视频。

我使用了他们的例子,它正在返回所有媒体。 这是代码:

        $request = "http://api.video.limelight.com/rest/organizations/$org_id/media/search";

        $signed_request = LvpAuthUtil::authenticate_request("GET", $request, $access_key, $secret, $params);

现在我想告诉它哪个字段对结果进行排序。 documentation表示有可用的分页参数,但我似乎无法让它们工作。

我尝试添加$params = array("and" => "sort_by:title");
 和$params = array("sort_by" => "title");但都没有奏效。

我也尝试将其添加到网址但不起作用。 http://api.video.limelight.com/rest/organizations/$org_id/media/search?sort_by=title

有人能告诉我如何正确传递分页参数吗? 谢谢

1 个答案:

答案 0 :(得分:0)

试试这个:

 http://api.video.limelight.com/rest/organizations/6d4242bd0cf94083a0195bfc2083e46e/media.xml?page_id=0&page_size=50&sort_by=publish_date&sort_order=desc

检查List all channels that contain a specific media

中的可选参数
Optional Parameters

page_id = <The zero-based identifier of the page to return> 
page_size = <The number of results to return per page> (default/max: 500) 
sort_by = <The field by which the results should be sorted> {publish_date, create_date, update_date} (default: update_date) 
sort_order = <The order in which the results should display> {asc, desc} (default: asc)