I am working with the Java API of lastfm.
I want to extract all users from a group, say Belgium. How do I create a new group and extract their members?
Group mygroup = new Group();
PaginatedResult<de.umass.lastfm.User> users = mygroup.getMembers("Belgium", key);)
It gives me an error on the first line:
group() has private access.
This is a bit strange. How should I call the constructor and don't I have to pass the group name during construction?
Thanks for any insights!