For a public group https://www.facebook.com/groups/359484787507661/, i am getting the group info by the followong code:
Group group = facebookClient.fetchObject("359484787507661", Group.class);
But I cant access the group info of the following public group url https://www.facebook.com/groups/therealheronarendramodi.
Group group = facebookClient.fetchObject("therealheronarendramodi", Group.class);
I got the following error:
Exception in thread "main" com.restfb.exception.FacebookOAuthException: Received Facebook error response of type OAuthException: (#803) Some of the aliases you requested do not exist: therealheronarendramodi (code 803, subcode null)
How to get facebook public group info by username? Is there any way to get group by it's username in restfb api?