twitter - Call back issue in twitter4j android -
i using twitter4j library post on twitter android app. have followed question. having 1 issue displays login screen, after entering username , password, it's displaying screen.
i tried display on sign in 4-5 times, still it's displaying me screen , not going app again.
manifest
file
<application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name="com.objectlounge.obltwitter.mainactivity" android:label="@string/app_name" > android:launchmode="singleinstance"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.view" /> <category android:name="android.intent.category.default" /> <category android:name="android.intent.category.browsable" /> <data android:host="obltwitter" android:scheme="app" /> </intent-filter> </activity> </application>
there wrong api key , api secret. regenerated both , started working.
Comments
Post a Comment