This is what is there in my manifest.xml:
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="tweetercr-oauth-twitter"
android:host="callback" />
This is my authorization part:
private String CONSUMER_KEY = “provided”;
private String CONSUMER_SECRET = “provided”;
private String CALLBACK_URL = “tweetercr-oauth-twitter://callback”;
So, what exact URL should be there in the callback section of the app in twitter?
And, can any one explain why? Went through a lot of links, but they all suggested to change the settings from client to browser which is no longer provided by twitter.