gpt4 book ai didi

java - uri.getQueryParameter() 返回空值

转载 作者:行者123 更新时间:2023-12-04 14:31:39 28 4
gpt4 key购买 nike

我在一个类中有以下代码:

@Override
public boolean shouldOverrideUrlLoading(WebView wv, String url)
{
if (url.startsWith(Constants.OAUTH_REDIRECT))
{
Uri uri = Uri.parse(url);

String state = uri.getQueryParameter("state");

if (state != null && state.equals(Constants.randString))
{
String error = uri.getQueryParameter("error");

if (error != null && error.length() > 0)
{
if (error.equals("access_denied"))
{
//user chose not to login
Log.d("oAuthView", "Access Denied");
finish();
}
else
{
Toast.makeText(getApplicationContext(), error, Toast.LENGTH_LONG).show();
finish();
}
}

//Go back to MainActivity with authorization code
Intent resultIntent = getIntent();
resultIntent.putExtra("authCode", uri.getQueryParameter("code"));

setResult(RESULT_OK, resultIntent);

finish();

return true;
}
}
return false;
}

出于某种原因,我在 try catch “状态”时得到了一个空值,即使我已经确定它在 URL 中。这意味着应用程序永远不会输入后面的 if 语句。我也检查过,当我 try catch authCode 时,同样的事情发生了。关于为什么他们会返回 null 的任何想法?

编辑:出于某种原因,当我尝试替代 URL 方案时,它解析正确。

我需要解析但不起作用的 URL: http://www.website.com/#access_token=tokenstringhere&token_type=bearer&state=randomStringHere&expires_in=3600&scope=identity+submit

一个类似的有效网址: http://www.website.com/?state=cnmdr6&code=tokenStringHere

什么会导致第一次解析失败但第二次解析正确?

最佳答案

如果有人正在寻找解决方案。

您的网址无效,因为您在网址查询前错过了问号 ?。您的网址应如下所示:http://www.website.com/?access_token=tokenstringhere&token_type=bearer&state=randomStringHere&expires_in=3600&scope=identity+submit请查看 documentation .

关于java - uri.getQueryParameter() 返回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32729669/

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