How can I get share result when compose a Tweet? onsuccess or onfailure
My code like this:
TweetComposer.Builder builder = new TweetComposer.Builder(this)
.text(“just setting up my Fabric.”)
.image(myImageUri);
builder.show();
If I can not get share result from above code, whether I must use “App Card Composer”?
When I do it by your document from https://docs.fabric.io/android/twitter/compose-tweets.html#twitter-kit-app-card-composer, I found TwitterCore.getInstance().getSessionManager()
.getActiveSession() always NULL.
Whether my APP must login with twitter?
If my application be whitelisted by Twitter and not use twitter login, whether I can make TwitterCore.getInstance().getSessionManager()
.getActiveSession() not NULL?