In the FB Graph API explorer the call to get business_discovery data uses the Instagram id for any user (in this case my own account) and uses a "username" to indicate the 3rd-party account from which one would like to get some public information.
Say for example, we want to get public data like name,followers_count,media_count for the instagram page motorolaus - the Graph Explorer the call would be something like:
GET /v3.2/?fields=name,username,business_discovery.username(motorolaus){name,followers_count, media_count}
But the restFB call IgUser.getBusinessDiscovery() does not take a username like the Graph API explorer. So how can i get the public info for an instagram page (which is NOT my own)? Thanks