我已经尝试了来自 Google 和 GitHub 的多个来源,但没有找到任何可以帮助我使用调度程序从我的 android 画廊自动发送多张图片和帖子的真实来源。有人在使用 Instagram API 吗?如果是这样,你能给我一些真实的来源吗?
问问题
816 次
1 回答
0
Intent
除了使用 Instagram API,您还可以通过打开“分享对象”对话框直接开始将图像或视频发布到 Instagram。这将需要用户交互。
String type = "image/*";
String filename = "/myPhoto.jpg";
String mediaPath = Environment.getExternalStorageDirectory() + filename;
private void createInstagramIntent(String type, String mediaPath){
// Create the new Intent using the 'Send' action.
Intent share = new Intent(Intent.ACTION_SEND);
// Set the MIME type
share.setType(type);
// Create the URI from the media
File media = new File(mediaPath);
Uri uri = Uri.fromFile(media);
// Add the URI to the Intent.
share.putExtra(Intent.EXTRA_STREAM, uri);
// Broadcast the Intent.
startActivity(Intent.createChooser(share, "Share to"));
}
取自https://www.instagram.com/developer/mobile-sharing/android-intents/的代码示例
于 2018-09-12T17:00:28.607 回答