试图将 Twitter 与我的应用程序集成。按照教程进行操作,但它不起作用。
我有一个PreferenceActivity
有一个CheckBoxPreference
。如果单击,我将执行以下操作:
chkTwitter.setOnPreferenceClickListener(new OnPreferenceClickListener() {
@Override
public boolean onPreferenceClick(Preference _pref) {
Intent fbIntent = new Intent(getApplicationContext(), TwitterConnectActivity.class);
_pref.setIntent(fbIntent);
return false;
}
});
我的 TwitterConnectActivity 被调用,我在那里配置 Oauth 对象并调用 Twitter 的身份验证网站。
当我点击 Authorize App 时,我onResume
的被调用:
@Override
protected void onResume() {
super.onResume();
if (this.getIntent()!=null && this.getIntent().getData()!=null){
Uri uri = this.getIntent().getData();
if (uri != null && uri.toString().startsWith(CALLBACK_URL)) {
String verifier = uri.getQueryParameter(oauth.signpost.OAuth.OAUTH_VERIFIER);
问题是它this.getIntent().getData()
是空的,所以我从不进入 if 条件。
我的 AndroidManifest 看起来像这样:
<activity
android:name=".SettingsActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<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="my_twitter" android:scheme="callback" />
</intent-filter>
</activity>
<activity
android:name=".TwitterConnectActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
当然,我定义了我的回调 URL,例如:private String CALLBACK_URL = "callback://my_twitter";
任何人都可以帮助我吗?
干杯,费利佩