使用 Android Intent Stopped Working 向 Instagram 传递标题?
Passing caption to Instagram with Android Intent Stopped Working?
我曾经使用以下代码从我的应用程序向 Android 上的 Instagram 发送图像:
shareIntent.setPackage("com.instagram.android");
shareIntent.putExtra(Intent.EXTRA_TEXT, caption);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile));
使用最新版本的 Instagram,字幕不再有效。
有谁知道这是一个错误还是正在使用另一个额外的东西。
谢谢。
看起来此功能已被删除...http://developers.instagram.com/post/125972775561/removing-pre-filled-captions-from-mobile-sharing
以下是帮助您的用户的好方法:
我曾经使用以下代码从我的应用程序向 Android 上的 Instagram 发送图像:
shareIntent.setPackage("com.instagram.android");
shareIntent.putExtra(Intent.EXTRA_TEXT, caption);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile));
使用最新版本的 Instagram,字幕不再有效。
有谁知道这是一个错误还是正在使用另一个额外的东西。
谢谢。
看起来此功能已被删除...http://developers.instagram.com/post/125972775561/removing-pre-filled-captions-from-mobile-sharing
以下是帮助您的用户的好方法: