java - open Instagram hashtag intent -



java - open Instagram hashtag intent -

for opening specific image in instagram utilize intent:

uri uri = uri.parse("http://instagram.com/p/image_id"); intent insta = new intent(intent.action_view, uri);

if want see specific hashtag images have do? want open instagram , see images of hashtag

uri uri = uri.parse("https://instagram.com/explore/tags/your_tag/"); intent intent = new intent(intent.action_view, uri); startactivity(intent);

java android android-intent

Comments

Popular posts from this blog

php - How to pass multiple values from url -

php - Laravel not returning controller -

c# - Confused on how to specify a Platform and Version while using ChromeOptions for RemoteWebDriver with Selenium donNet since recent updates -