Did you stop Instagram title transfer from Android Intent?

I used to send images to Instagram on Android from my application using this code:

shareIntent.setPackage("com.instagram.android"); shareIntent.putExtra(Intent.EXTRA_TEXT, caption); shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile)); 

In the latest version of Instagram, the title no longer works.

Does anyone know if this is a bug or maybe another additional file is being used.

Thanks.

+8
android instagram api
source share
1 answer

It looks like this feature has been removed ... http://developers.instagram.com/post/125972775561/removing-pre-filled-captions-from-mobile-sharing

Here is a good way to help your users: Template Name

+10
source share

All Articles