You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
486 B
PHP
19 lines
486 B
PHP
<?php
|
|
class User
|
|
{
|
|
public static function getUserInfo($accessToken, $code)
|
|
{
|
|
$response = Http::get("/user/getuserinfo",
|
|
array("access_token" => $accessToken, "code" => $code));
|
|
return json_encode($response);
|
|
}
|
|
|
|
|
|
public static function simplelist($accessToken,$deptId){
|
|
$response = Http::get("/user/simplelist",
|
|
array("access_token" => $accessToken,"department_id"=>$deptId));
|
|
return $response->userlist;
|
|
|
|
}
|
|
}
|