Is it possible share a tweet in android without creating a twitter application(without consumer key/secret)?
I know that "Posting to Twitter without authentication is not possible." But is it required to create a twitter application?
I used this method found here:
String url = "http://www.twitter.com/intent/tweet?url=YOURURL&text=YOURTEXT";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
Thanks to Sathya