https://m.repai.com/user/user_info_api/access_token/rpat_47be0653fe75e8ae3f3d4fa5de931c24
其中 rpat_47be0653fe75e8ae3f3d4fa5de931c24 为 access_token 示例。
{"is_login":false}
返回false的原因为 access_token 错误或过期(有效期30天,如果30天内用 access_token 访问过此接口,有效期自动延长)
{ "is_login": true, "user_info": { "rp_city": "北京", "rp_coin": "0", "rp_grade": "0", "rp_idcard": null, "rp_ipaddr": null, "rp_isp": "移动", "rp_isseller": "0", "rp_lastip": "106.2.171.114", "rp_phone": "15901283960", "rp_phonestatus": "0", "rp_province": "北京", "rp_realname": null, "rp_uid": "1", "user_integral": "1", "order_count": "35" }, "user_avatar": { "pic_medium": "http://pic.repaiapp.com/pic/0f/52/50/0f52508b97a7a7900fe206c276158ce425ae6723.jpg@0e_120w_120h_0c_0i_1o_90Q_1x.jpg", "pic_small": "http://pic.repaiapp.com/pic/0f/52/50/0f52508b97a7a7900fe206c276158ce425ae6723.jpg@0e_400w_400h_0c_0i_1o_90Q_1x.jpg", "reason": "用户拥有头像!", "status": true } }
user_info 下的参数:
user_avatar 下的参数:
<?php require_once("/Data/webapps/m.repai.com/m/phpapi.php"); //PHP引用方式,需要引用的框架入口文件 $result = phpapi_mvc("user", "user_info_api", array("access_token" => "rpat_47be0653fe75e8ae3f3d4fa5de931c24")); if (empty($result["error"])) { var_dump($result); //打印出返回内容,此处输出为PHP数组,格式与客户端调用接口输出的JSON数组json_decode后的内容一样 } else { var_dump($result["error"]); //打印出错误内容 } ?>
其中 rpat_47be0653fe75e8ae3f3d4fa5de931c24 为 access_token 示例。