Hi,
I am currently using TweetComposer in my app in the recommended way :
Intent tweetIntent = new TweetComposer.Builder(this).text("My tweet").createIntent();
startActivityForResult(tweetIntent, TWEET_COMPOSER_REQUEST_CODE);
I would like to know if there is a way to get the tweet URL (or Tweet ID ?) once the user has sent his tweet ? Is it possible to get it from the onActivityResult method ? Or the only solution in to use the login kit and the REST API ?
Thanks