雅虎身份验证中的 400 错误请求

Posted

技术标签:

【中文标题】雅虎身份验证中的 400 错误请求【英文标题】:400 Bad Request in Yahoo Authentication 【发布时间】:2012-07-06 12:10:42 【问题描述】:

我正在尝试将 Yahoo 集成到我的应用程序中。

我希望用户使用他们的 Yahoo 帐户登录,但每当我请求令牌时,我都会收到以下错误:

getRequestToken() Exception: oauth.signpost.exception.OAuthCommunicationException: 
Communication with the service provider failed: Service provider responded in error: 400 (Bad Request)

这是我的代码(Request_Token_Activity.java):

import oauth.signpost.OAuth;
import oauth.signpost.OAuthConsumer;
import oauth.signpost.OAuthProvider;
import oauth.signpost.commonshttp.CommonsHttpOAuthConsumer;
import oauth.signpost.commonshttp.CommonsHttpOAuthProvider;
import oauth.signpost.signature.HmacSha1MessageSigner;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.net.Uri;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.util.Log;

public class Request_Token_Activity extends Activity 
    private OAuthConsumer consumer; 
    private OAuthProvider provider;
    private SharedPreferences prefs;
@Override
public void onCreate(Bundle savedInstanceState) 
    super.onCreate(savedInstanceState);
    try 

        consumer = new CommonsHttpOAuthConsumer("my consumer key", "my consumer secret");
        consumer.setMessageSigner(new HmacSha1MessageSigner()); 
        provider = new CommonsHttpOAuthProvider(
                "http://api.login.yahoo.com/oauth/v2/get_request_token",
                "http://api.login.yahoo.com/oauth/v2/get_token",
                "http://api.login.yahoo.com/oauth/v2/request_auth");

     catch (Exception e) 
        Log.e("", "onCreate Exception: " + e.toString());
    
    getRequestToken();

private void getRequestToken() 
    try 

        String url = provider.retrieveRequestToken(consumer, "yahooapi://callback");
        Log.i("", "Yahoo URL: " + url);
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)).setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_FROM_BACKGROUND);
        this.startActivity(intent);
     catch (Exception e) 
        Log.i("", "getRequestToken() Exception: " + e.toString());
    

@Override
public void onNewIntent(Intent intent) 
    super.onNewIntent(intent); 
    prefs = PreferenceManager.getDefaultSharedPreferences(this);
    final Uri uri = intent.getData();
    if (uri != null && uri.getScheme().equals("yahooapi")) 
        getAccessToken(uri);
    

private void getAccessToken(Uri uri) 
    final String oauth_verifier = uri.getQueryParameter(OAuth.OAUTH_VERIFIER);
    try 
        provider.retrieveAccessToken(consumer, oauth_verifier);

        final Editor edit = prefs.edit();
        edit.putString("YAHOO_OAUTH_TOKEN", consumer.getToken());
        edit.putString("YAHOO_OAUTH_TOKEN_SECRET", consumer.getTokenSecret());
        edit.commit();

        String token = prefs.getString("YAHOO_OAUTH_TOKEN", "");
        String secret = prefs.getString("YAHOO_OAUTH_TOKEN_SECRET", "");
        consumer.setTokenWithSecret(token, secret);

        Log.i("", "Yahoo OAuth Token: " + token);
        Log.i("", "Yahoo OAuth Token Secret: " + token);

     catch (Exception e) 
        Log.i("", "getAccessToken Exception: " + e.toString());
    



这是我的 AndroidManifest.xml 的快照:

        <activity android:name="Request_Token_Activity" android:launchMode="singleTask">
        <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="yahooapi" android:host="callback" />
        </intent-filter>
    </activity>

我已将我的Yahoo Project 设置为Web Application 并将Read and Write access 设置为SocialContacts。我做错了什么?

【问题讨论】:

我不知道这是否适用于此,但我记得 Yahoo!有时需要您使用 wifi 连接到他们的服务器。同样,我不确定这是否适用于这里,或者是否适用于雅虎! 【参考方案1】:

@Jayson Tamayo 我同意 Eliezer 的观点,尝试在 wifi 上使用您的应用。我在 wifi 中尝试过,它可以工作,但遗憾的是它不能在 GPRS 上工作。如果您的 android 应用程序是本机应用程序,那么您应该将您的项目设置为客户端/桌面。我已经做到了,它对我有用。

【讨论】:

【参考方案2】:

看起来 yahoo 的 api 调用是一个 ssl 调用。我不知道这是否那么简单,但您的代码将 Oauth 提供程序设置为:

           "http://api.login.yahoo.com/oauth/v2/get_request_token",
            "http://api.login.yahoo.com/oauth/v2/get_token",
            "http://api.login.yahoo.com/oauth/v2/request_auth");

根据http://developer.yahoo.com/oauth/guide/oauth-requesttoken.html

提供者应该是 Http*s*//api.login.yahoo.com/oauth/v2/get_request_token

此外,这里是 yahoo oauth 错误代码以及您收到 400 错误http://developer.yahoo.com/oauth/guide/oauth-errors.html 的原因我会记录我的请求并查看缺少/错误/格式错误等参数。

【讨论】:

以上是关于雅虎身份验证中的 400 错误请求的主要内容,如果未能解决你的问题,请参考以下文章

我尝试使用 passport.js 对用户进行身份验证,但它给了我一个错误**服务器响应状态为 400(错误请求)**

Salesforce OAuth 身份验证错误请求错误

Spotify API 错误 400:“仅支持有效的不记名身份验证”

ASP.NET Core JWT/Windows 身份验证 HTTP 400 错误

.NET 5 Blazor 服务器 OKTA 身份验证显示 HTTP 错误 400

如何使用python请求将经过身份验证的POST请求编码到API?