In my application I need to share a link to a promo site via Facebook and twitter, on facebook we got something like a “sharing dialog” or a message bundle like
Request request = new Request(Session.getActiveSession(), "me/feed", bundle, HttpMethod.POST, new Request.Callback(){ @Override public void onCompleted(Response response) { ... } });
but for android there is no twitter sdk (trully I use twitter4j) and cannot send a message
so how to tweet the link via twitter?
android twitter
user2331879
source share