/**
* The user's Facebook username.
*
* @return The user's Facebook username.
* @since 1.6.5
* @deprecated since graph api 2.0
*/
@Deprecated
@Getter
@Setter
@Facebook
private String username;Hi there,
in the username was removed with Graph API 2.0 and there is not replacement. I think Facebook will force the use of the user id especially because the ids are app scoped now. With the username there would be a workaround for the app scoped ids. That’s why you only get the deprecation information in the Javadoc regarding Graph API 2.0.
Yes, the url is the former picture field. As you can see in the Graph API Explorer the picture field now returns a JSON and not only the String, so we had to change this accordingly.
Cheers,
Norbert