Send Text Tag to Instagram using my Android app

前端 未结 3 1587
名媛妹妹
名媛妹妹 2021-01-05 14:39

My app takes pictures and sends it to Instagram, Facebook, and twitter but I need to share the text \"#myappname\" with the picture on Instagram.

Here\'s the code I

相关标签:
3条回答
  • 2021-01-05 15:17

    Finally, Instagram API supports text coming from Android apps using Intent.

    Here is the intent code to share images and text on Instagram.

    Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("image/*");
    shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    shareIntent.putExtra(Intent.EXTRA_STREAM,uri);
    shareIntent.putExtra(Intent.EXTRA_TEXT,"YOUR TEXT TO SHARE IN INSTAGRAM");
    shareIntent.setPackage("com.instagram.android");
    return shareIntent;
    

    Here is the documentation

    0 讨论(0)
  • 2021-01-05 15:21

    It's not possible, since for now instagramm accepts only Intent.EXTRA_STREAM unfortunately. You can check same question here Open Instagram app from another android app and send an Image with a Caption

    0 讨论(0)
  • 2021-01-05 15:28

    If you're looking to interact with they're API's directly there is a lot of stuff you need to do that I'm not familiar with. However, if you want to share to any app on the device that accepts an image and text you can just run startActivity(); while passing in a proper Intent.

    If you have time, I suggest you read the following Android Developer Blog post: Share With Intents

    Or, have a look at the following quesiton on SO: flickr, tumblr , instagram share intent in android

    Hopefully that is what you're trying to achieve.

    0 讨论(0)
提交回复
热议问题