A simple method to share/embed an image URL to Twitter?

Greetings,

I can’t seem to figure out a simple way to share/embed a simple image URL to Twitter without having to involve SDK and 3rd Party Tools. (The Image is uploaded to our server)

In Facebook it’s pretty simple you just use the Feed feature:

    public static void FeedShare(
        string AppId, string ImageLink,
        string ImageURL, string Name,
        string Caption, string Description)
    {
        string FullURL =
            "https://www.facebook.com/dialog/feed" +
            "?app_id=" + AppId +
            "&link=" + ImageLink +
            "&picture=" + ImageURL +
            "&name=" + ReplaceSpace(Name) +
            "&caption=" + ReplaceSpace(Caption) +
            "&description=" + ReplaceSpace(Description) +
            "&redirect_uri=https://facebook.com/";

        Application.OpenURL(FullURL);
    }

I have a reference to the Texture2D in the code so if it’s not possible to embed the image from the URL I could upload it directly if that’s easier.

I’m looking for a similar solution to that of Facebook i.e. lets me put all the information of the tweet in the URL and launch that via Application.OpenURL.

Does such a solution exist on planet Earth or do I have to travel to Planet SDK/Plugins?

Thanks.

I am also interested about this.

I think for twitter you use https://api.twitter.com/… then it should be some json probably… not sure can you easily pass image.