gpt4 book ai didi

java - 错误描述 : Cannot return to provided redirect_uri

转载 作者:行者123 更新时间:2023-11-30 01:24:26 26 4
gpt4 key购买 nike

我正在尝试创建一个应用程序,其中一个功能是添加用户登录/注销。

我正在关注这个:https://api.stackexchange.com/docs/authentication

所以我的 Activity 中有一个按钮,单击该按钮会将您重定向到浏览器以登录堆栈溢出网站。我想在用户登录后返回到我的应用程序。但它说“无法返回提供的 redirect_uri

这是我的 AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vivek.stack.client">

<uses-permission android:name="android.permission.INTERNET"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".retro.Login"
android:label="@string/app_name"
android:configChanges="keyboard|orientation|screenSize">
<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="aahost"
android:scheme="bbscheme" />
</intent-filter>
</activity>

<activity android:name=".Mine">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER"></category>
<action android:name="android.intent.action.MAIN"></action>
</intent-filter>
</activity>
</application>
</manifest>

我的登录类:

package com.vivek.stack.client.retro;

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.RelativeLayout;

import com.vivek.stack.client.R;

/**
* Created by Shiva on 14-04-2016.
*/
public class Login extends AppCompatActivity {


RelativeLayout relativeLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
relativeLayout = (RelativeLayout)findViewById(R.id.snack);

Button loginButton =(Button) findViewById(R.id.loginbutton);
loginButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String uri = "https://stackexchange.com/oauth?\n" +
"scope=private_info&\n" +
"redirect_uri=bbscheme://aahost&\n"+
"client_id=" ;

Intent intent = new Intent(
Intent.ACTION_VIEW,

Uri.parse(uri));
if(intent.resolveActivity(getPackageManager())!=null)
startActivity(intent);
}
});
}

@Override
protected void onResume() {
super.onResume();

// the intent filter defined in AndroidManifest will handle the return from ACTION_VIEW intent
Uri uri = getIntent().getData();
if (uri != null && uri.toString().startsWith(redirectUri)) {
// use the parameter your API exposes for the code (mostly it's "code")
String code = uri.getQueryParameter("code");
if (code != null) {
// get access token
Log.i("MYCODECODE" , code);

Snackbar.make(relativeLayout ,code , Snackbar.LENGTH_LONG).show();
} else if (uri.getQueryParameter("error") != null) {
// show an error message here
Log.i("NO CODE" , "NO CODE");
Snackbar.make(relativeLayout ,"we did not get" , Snackbar.LENGTH_LONG).show();

}
}
}


}

登录成功后应该会返回应用。

最佳答案

回答我自己的问题。

解决方案只是确保您的 android:hostandroid:scheme 与您在注册​​应用程序时提供的 redirect_uri 匹配。

关于java - 错误描述 : Cannot return to provided redirect_uri,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36610424/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com