/**
* Set the verificationCode (A.K.A. access token) to the API to be used on the request
* signature, for authenticated requests.
*/
BuzzUserProfile profile = buzz.getUserProfile( userId );
/**
* Print results
*/
System.out.println( "Name: " + profile.getName() );
System.out.println( "Id: " + profile.getId() );
System.out.println( "Profile Url: " + profile.getProfileUrl() );
}