我尝试了来自Google和GitHub的多个来源,但是没有找到任何可以帮助我使用调度程序从我的Android画廊自动发送多张图片和帖子的真实来源。有人在使用Instagram API吗?如果是这样,您能给我一些真实的消息吗?
答案 0 :(得分: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/
的代码示例