意图发送Instagram直接消息

时间:2016-07-22 06:26:02

标签: java android android-intent instagram

我希望人们能够从我的Android应用程序向我的Instagram帐户发送直接消息。 在Instagram上发送直接消息的意图是什么?

由于

2 个答案:

答案 0 :(得分:0)

您可以使用以下代码

String type = "video/*";
String filename = "/myVideo.mp4";
String mediaPath = Environment.getExternalStorageDirectory() + filename;

createInstagramIntent(type, mediaPath);

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);
    share.putExtra(Intent.EXTRA_STREAM, [URI of photo]);
    share.putExtra(Intent.EXTRA_TEXT, [Text of caption]);

    // Broadcast the Intent.
    startActivity(Intent.createChooser(share, "Share to"));
}

请参阅official documentation

请参阅this& this

答案 1 :(得分:0)

要将纯文本分享到 Instagram DM(直接),请使用以下内容:

val shareIntent = Intent(Intent.ACTION_SEND)
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Assd") // set uri
shareIntent.setPackage("com.instagram.android")
startActivity(shareIntent)

或者您也可以使用文件代替:

String type = "video/*";
...
intent..putExtra(Intent.EXTRA_STREAM, [URI of photo]);