Tag: 聚会

无法获取Meetup API访问令牌与改造 – Android

我正在尝试使用改进来实现Meetup API的 OAuth 2身份验证。 我有授权码,但我无法获得访问令牌。 这里是所有相关的代码位: 我的onResume方法: override fun onResume() { super.onResume() // the intent filter defined in AndroidManifest will handle the return from ACTION_VIEW intent val uri = intent.data if (uri != null && uri.toString().startsWith(CALL_BACK)) { val code = uri.getQueryParameter("code") if (code != null) { // get access token // we'll do that in […]