我一直在尝试在Android中实现Google的AppAuth库,但我正在努力使其正常工作。我一直在尝试遵循Google的指南并将其应用于我自己的代码库,但是我被困在待处理的意图上。
更具体地说,当我调用performAuthorizationRequest()
方法时,模拟器可以按照重定向在其自定义选项卡中获取身份验证代码(我可以看到它(。但是,没有调用处理程序。我尝试添加onNewIntent()
,onActivityResult()
和onResume()
但没有一个被调用。
从performAuthorizationRequest()
的Javadocs中,我看到
"提供的 {@link 挂起意图完成挂起意图} 将是 援引"。
那是什么意思?如何与已完成的挂起意图对象进行交互?有什么方法可以使用创建挂起意图时发送的请求代码来检索该上下文?
这是我下面的代码:
var authReq: AuthorizationRequest = AuthorizationRequest.Builder(
serverConfig,
clientId,
ResponseTypeValues.CODE,
redirectUri
).build()
val service: AuthorizationService = AuthorizationService(view.context)
val action = "com.google.codelabs.appauth.HANDLE_AUTHORIZATION_RESPONSE"
val authIntent = Intent(action)
val pendingIntent = PendingIntent.getActivity(this, authReq.hashCode(), authIntent, 0)
service.performAuthorizationRequest(authReq, pendingIntent)
在我的清单中,我添加了活动:
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="com.google.codelabs.appauth.HANDLE_AUTHORIZATION_RESPONSE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name="net.openid.appauth.RedirectUriReceiverActivity" >
<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="com.google.codelabs.appauth"/>
</intent-filter>
</activity>
好的,所以在花了几天时间之后,我意识到我搞砸了重定向 URI 和 RedirectUriReceiverActivity 的数据元素。不知何故,这个资源帮助我了解我错过了什么。
在 AndroidManifest.xml 中,RedirectUriReceiverActivity 需要知道将完成发回何处。此外,我的重定向 uri(在我的 authReq 内部(被设置为外部地址,我将其更改为使用 Android 深度链接。