Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 505 Bytes

managing-user-profiles.md

File metadata and controls

21 lines (13 loc) · 505 Bytes

Managing a User's Profile

There are lots of operations involving a user's profile that can be performed. Remember to request the correct scopes beforehand.

Getting the current user's profile

$me = $api->me();

echo $me->display_name;

Getting any user's profile

$user = $api->getUser('USER_ID');

echo $user->display_name;

Please see the method reference for more available options for each method.