我曾经使用以下代码从我的应用程序将图像发送到Android上的Instagram:
shareIntent.setPackage("com.instagram.android");
shareIntent.putExtra(Intent.EXTRA_TEXT, caption);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(tempFile));
Run Code Online (Sandbox Code Playgroud)
使用最新版本的Instagram,标题不再有效.
有谁知道这是一个错误还是正在使用另一个额外的错误.
谢谢.