如何将图像附加到Twitter Android中的“直接消息”?

时间:2017-02-15 21:20:33

标签: android twitter xamarin.android

我编写了一个应用程序,可以向附带图像的Twitter发送消息。有用!我在几台设备上进行了测试,并要求其他人也这样做。当选择推特朋友时,它甚至适用于直接消息。但是,选择“直接消息”时它不起作用。这迫使用户直接选择朋友而不是通过“直接消息”选择他(这真的很奇怪),否则图片没有附加。只需看一下屏幕截图:

Screenshot of intent chooser

这是我的Xamarin Android编程代码。让我知道如何解决它。目前,所有选项都有效,甚至选择我的朋友但不选择“直接留言”。我还需要告诉我,我希望在推文中看到的Twitter文本没有任何问题。

        public bool TweetImage(Bitmap imageToTweet)
    {
        var messageIntent = context.FindMessageIntent(this.twitterConstants.PackageName);
        if (messageIntent == null)
        {
            return false;
        }
        string outputFileBMP = SaveBitmap(imageToTweet);
        context.Tweet(messageIntent, outputFileBMP, this.twitterConstants.DefaultTwitterText, this.twitterConstants.ChooserMessage);
        return true;
    }

        public static Intent FindMessageIntent(this ContextWrapper contextWrapper, params string[] packageNames)
    {
        Intent wantedIntent = new Intent();
        wantedIntent.SetType("text/plain");

        var resolveInfos = contextWrapper.PackageManager.QueryIntentActivities(wantedIntent, PackageInfoFlags.MatchDefaultOnly);

        var result =  (from r in resolveInfos
                       from p in packageNames
                       where p == r.ActivityInfo.PackageName
                       select p).FirstOrDefault();

        if (result != null)
        {
            wantedIntent.SetPackage(result);
            return wantedIntent;
        }
        return null;
    }

        public static void Tweet(this ContextWrapper contextWrapper, Intent messageIntent, string filePath = null, string message = null, string chooserMessage = null)
    {
        if (filePath != null)
        {
            using (var file = new Java.IO.File(filePath))
            {
                messageIntent.PutExtra(Intent.ExtraStream, Android.Net.Uri.FromFile(file));
            }
        }
        if (message != null)
        {
            messageIntent.PutExtra(Intent.ExtraText, message);
        }

        if (chooserMessage != null)
        {
            using (var chooser = Intent.CreateChooser(messageIntent, chooserMessage))
            {
                contextWrapper.StartActivity(chooser);
            }
            return;
        }
        contextWrapper.StartActivity(messageIntent);
    }

请注意,我使用的是Android,需要基于Android的解决方案(基于意图)。

1 个答案:

答案 0 :(得分:0)

可悲的是,Twitter don't provide API access for uploading images via DM

如果您能够使用Twitter的私有API,则应该能够将media_id附加到您的DM。但除此之外,你运气不好。

对不起。