我已经坚持了好几个小时了,因为这件事以前一直在工作,但突然停止了,表现得像预期的那样。我真的不知道如何以及为什么,因为我一直在重新检查过程中的每一行代码,却看不出有什么问题,所以我向你们寻求帮助。
好的。所以我有一个LoginScreen
带有一个按钮的活动,它在点击时开始一个新Intent.ACTION_VIEW
的。这将在浏览器中启动 OAUTH 进程并ApiManager.OAUTH_CALLBACK_URI
设置为stjapp://oauthresponse
.
这是我AndroidManifest.xml
参与此活动的部分:
<activity
android:name=".LoginScreen"
android:label="@string/application"
android:launchMode="singleTask">
<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:scheme="stjapp" android:host="oauthresponse" />
</intent-filter>
</activity>
我如何开始Intent.ACTION_VIEW
我的活动:
private View.OnClickListener loginHandler = new View.OnClickListener() {
public void onClick(View v) {
OAuthClientRequest request = null;
try {
request = OAuthClientRequest
.authorizationLocation(ApiManager.OAUTH_AUTHORIZE)
.setClientId(ApiManager.CLIENT_ID).setRedirectURI(ApiManager.OAUTH_CALLBACK_URI)
.buildQueryMessage();
}
catch (OAuthSystemException e) { e.printStackTrace(); }
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(request.getLocationUri() + "&response_type=code"));
startActivity(intent);
}
};
这是浏览器中发生的情况的屏幕截图:
在那里,我应该回到我的LoginScreen
活动并处理方法中的code
查询参数,onNewIntent
但是......是的,事情不再按预期工作了。
任何帮助表示赞赏。