I'm working on an app that i have already published in the App Store, now making an Android build. In the iOS i simply use an uri like this one:
instagram://tag?name=myHashtag
It opens Instagram app, showing a grid of photos corelated with the hashtag. Unfortunately, in the android, below code doesn't work:
Intent hashtagIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse("instagram://tag?name=myHashtag")
);
startActivity(hashtagIntent);
Is there any method that would make this work? It's not any core feature of the app, so i don't want use Instagram's API.