Is there anyway to get the same details as /users/me api command but in WP backend?
我有后端功能,可以获取用户元详细信息
custom api /user_meta
public myFunc( $userId ) {
$user_meta = get_user_meta( $userId );
return $user_meta
}
用户元字段具有
ACF option 格式奇怪
"place": [
"a:1:{i:0;s:12:\\"Earth\\";}"
],
但是当使用/users/me API调用时,返回
/users/me default wp api
"place": [
"Earth"
],
虽然我可以结合使用这两个API来获得适当的用户元详细信息,但这并不理想。在wordpress后端是否有获取/users/me api调用的方法?