I have a problem for twitter callback for myapp
when I share imageand textat twitter(Twitter application not installed)the time when it is redirected to the browser for sharing imageor text.
the data exchange is fine, but the problem is that it does not send any callback event to my application and does not close the browser automatically.
<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:scheme="pdk1234567890" />
<data
android:host="SampleActivity"
android:scheme="x-oauthflow-twitter" />
</intent-filter>
Please, help...
source
share