I'm implementing webhook subscription to receive notifications about new comments on Instagram media (so, the solution assumes server side environment). Webhook payload contains a comment ID. Fetching a comment node via Facebbok API Graph call I can get author's username. From this point I need to get author's profile picture.
Currently I can use Business Discovery API to get information about user by username like this
GET graph.facebook.com/%PAGEID%
?fields=business_discovery.username(%USERNAME%){...fields...}
But this method is working only for Instagram Business accounts.
Recently, this task can be accomplished with https://www.instagram.com/%USERNAME%/?__a=1
call, but now this request requires authorization.