-1
我想直接發送照片到Instagram,而無需啓動它。可能嗎?是否有可能直接分享或發佈Instagram上的照片從我們的Android應用程序,而無需啓動instagram
File file = new File("/mnt/" + path);
Uri uri = Uri.fromFile(file);
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.setPackage("com.instagram.android");
context.startActivity(shareIntent);
看看他們是否可以使用Web服務API。 – CommonsWare
這是重複的:https://stackoverflow.com/a/16296859/7990687 – Esteban