GuangData.php 791 Bytes
<?php

namespace LibModels\Wap\Home;

use Api\Sign;
use Api\Yohobuy;

/**
 * 我的逛数据模型
 *
 * @name GuangData
 * @package LibModels/Wap/Home
 * @copyright yoho.inc
 * @version 1.0 (2015-11-13)
 * @author xiaowei
 */
class GuangData
{

    const GUANG_URI = 'guang/api/v1/favorite/';

    //我的guang
    public static function getGuangInfo($uid, $page, $yh_channel = 1, $gender = '1,3', $limit = 10)
    {
        $param = Yohobuy::param();
        $param['uid'] = $uid;
        $param['page'] = $page;
        $param['gender'] = $gender;
        $param['limit'] = $limit;
        $param['yh_channel'] = $yh_channel;
        $param['client_secret'] = Sign::getSign($param);
        return Yohobuy::post(SERVICE_URL . self::GUANG_URI . 'getUserFavArticleList', $param);
    }

}