#获取交友信息列表
##接口地址
    http://{hostname}.qianfanapi.com/api1_2/meet/list
##参数列表
    @param  int     $sex  1男2女
    @param  int     $is_recommend  是否推荐  0所有 1推荐  2没有推荐的
    @param  int     $page 第几页  从1开始
    @param  int     $order_by 0用户id 1注册交友时间 2资料最后更新时间
    @param  int     $order_type 0正序 1倒叙
##返回值
    ret
    text
    data  object
        user_id  object
            user_id               //用户id
            user_name           //用户名
            user_sex           //用户性别
            user_icon           //用户头像
            user_phone           //用户手机
            declaration           //宣言
            education           //学历
            job                   //工作
            sign               //签名
            photos  array       //图片
                [key]  object
                id               //图片ID
                width           //宽度
                height           //高度
                url               //图片地址
##返回值示例
    {
        “ret”: 0,
        “text”: “”,
        “data”: {
            “2242076”: {
                “user_id”: “2242076”,
                “user_name”: “半夏.9n”,
                “user_sex”: “男”,
                “user_icon”: “http://pic.hualongxiang.com/attachment/upload/middle/76/2242076.jpg",
                “user_phone”: “13222592150”,
                “declaration”: “飞机换手机号捡垃圾是快来加快递费”,
                “education”: “本科”,
                “job”: “蓝领”,
                “sign”: “”,
                “photos”: [
                    {
                        “id”: 435515,
                        “width”: 588,
                        “height”: 526,
                        “url”: “http://pic.app.hualongxiang.com/_20160826090713_57bfeaa1e4000.png"
                    }
                ]
            }
        }
    }
#交友个人信息
##接口地址
    http://{hostname}.qianfanapi.com/api1_2/meet/info
##参数列表
    @param  int     $user_id  用户id
##返回值
    ret
    text
    data  object
            user_id               //用户id
            user_name           //用户名
            user_sex           //用户性别
            user_icon           //用户头像
            user_phone           //用户手机
            declaration           //宣言
            education           //学历
            job                   //工作
            sign               //签名
            photos  array       //图片
                [key]  object
                id               //图片ID
                width           //宽度
                height           //高度
                url               //图片地址
##返回值示例
    {
    “ret”: 0,
    “text”: “”,
    “data”: {
        “user_id”: “2242076”,
        “user_name”: “半夏.9n”,
        “user_sex”: “男”,
        “user_icon”: “http://pic.hualongxiang.com/attachment/upload/middle/76/2242076.jpg",
        “user_phone”: “13222592150”,
        “declaration”: “飞机换手机号捡垃圾是快来加快递费”,
        “education”: “本科”,
        “job”: “蓝领”,
        “sign”: “”,
        “photos”: [
            {
                “id”: 435515,
                “width”: 588,
                “height”: 526,
                “url”: “http://pic.app.hualongxiang.com/_20160826090713_57bfeaa1e4000.png"
            }
        ]
    }
}