要求:打开URL并将响应返回给应用程序,并将用户重定向回我的应用程序,因为随后还有其他API调用。
<intent-filter
android:autoVerify="true"
android:order="1">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="ab.bc.cd"
android:port="11001"/>
<data android:scheme="https" />
<data android:scheme="http" />
<data android:pathPrefix="/abc.html" />
</intent-filter>
</activity>
在浏览器中打开第一个api调用的代码:
if (!TextUtils.isEmpty(url)) {
final CustomTabsIntent customTabsIntent = new CustomTabsIntent.Builder().build();
CustomTabActivityHelper.openCustomTab(MainActivity.this, customTabsIntent, Uri.parse(url), new WebviewFallback() {
@Override
public void openUri(Activity activity, Uri uri) {
setupCustomTabs(uri);
}
});
在这里处理意图部分
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
final String schemeName = intent.getScheme();
final Uri data = intent.getData();
if (data != null && data.getHost() != null && data.getHost().equalsIgnoreCase("uaepass")) {
return;
}
if (!TextUtils.isEmpty(schemeName) && schemeName.equalsIgnoreCase(UAEPassConstant.SCHEME)) {
final Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragment_container);
if (fragment != null && !(fragment instanceof DisplayFragment)) {
setFragment(new DisplayFragment(), null, false);
}
final String encodedQuery = intent.getData().getEncodedQuery();
if (!TextUtils.isEmpty(encodedQuery) && !encodedQuery.contains(UAEPassConstant.ERROR_DESCRIPTION)) {
final String[] queryDataArray = encodedQuery.split("=|&"); // this is to fetch a code value which comes as a result of the first api call
final LoginApiCall uaePassCall = new LoginApiCall(MainActivity.this, queryDataArray[1], new IUAEPassCallBack() {
@Override
public void onSuccessLogin(String userInfoJson, String tokenJson) {
Log.e("userInfo", userInfoJson);
Log.e("tokenJson", tokenJson);
final Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragment_container);
if (fragment instanceof DisplayFragment) {
((DisplayFragment) fragment).LoggingData(userInfoJson);
}
}
将会发生什么:当我运行此代码时,一切正常,但是当第一个API调用链接在浏览器中打开并且当我批准了它的登录请求时,它在浏览器本身中显示了重定向URI,并且控件确实不直接回到我的应用程序。相反,它冻结,然后我需要单击“在Chrome中打开”(附加),然后它提示我是否要打开该应用程序,并选择将控件返回到我的应用程序。任何指针将不胜感激。提前致谢!编辑:该代码在第一次执行期间正常工作,但是第二次出现此问题。
我做了很多事情,但是最后,当我更改代码以将自定义选项卡打开为:
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(url));
现在,可以正常工作。
注意:仅此一项是行不通的。我检查了几乎所有与此问题相关的链接,但事实证明,我使用的深层链接是错误的。请确保您正确设置方案并托管。我花了4天的时间弄清这个问题。