Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FirstName and LastName for VkPerson #31

Closed
ITurchenko opened this issue Oct 23, 2014 · 1 comment
Closed

FirstName and LastName for VkPerson #31

ITurchenko opened this issue Oct 23, 2014 · 1 comment

Comments

@ITurchenko
Copy link

You get first name and last name for person from server separately. Can you add them to VkPerson class?

VkSocialNetwork.getSocialPerson()

 if(jsonResponse.has("first_name")) {
    firstName = jsonResponse.getString("first_name");
 }
 if(jsonResponse.has("last_name")) {
        lastName = jsonResponse.getString("last_name");
 }
 socialPerson.name = firstName + " " + lastName;
gorbin added a commit that referenced this issue Oct 24, 2014
@gorbin
Copy link
Owner

gorbin commented Oct 24, 2014

yep, you right forgot about it - add in last commit update maven lib as soon as possible

@gorbin gorbin closed this as completed Oct 24, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants