Android IAB错误 - 需要身份验证

时间:2015-01-13 11:09:30

标签: android in-app-purchase

我在我的应用程序中测试In App Billing()v3时遇到问题,我无法通过测试帐户购买任何东西。它始终显示一个带

的Play商店对话框
"Error Authentication is required. You must log in with your Google Account"

我只能毫无问题地购买保留的项目“android.test.purchased”并使用它。

IAB开始:

private static final int REQ_CODE_BUY = 51667;
    private static final String buyFile = "bought";

    private Activity activity;
    private ProgressDialog pD;
    private IInAppBillingService mService;
    private ServiceConnection mServiceConn = new ServiceConnection() {
        @Override
        public void onServiceDisconnected(ComponentName name) {
            mService = null;
        }

        @Override
        public void onServiceConnected(ComponentName name, 
                IBinder service) {
            mService = IInAppBillingService.Stub.asInterface(service);
        }
    };

    public IABHelper(Activity activity, ProgressDialog pD){
        this.activity = activity;
        this.pD = pD;
    }

    public void start(){
        Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
        serviceIntent.setPackage("com.android.vending");
        activity.bindService(serviceIntent, mServiceConn, Context.BIND_AUTO_CREATE);
    }

    public void destroy(){
        if (mService != null) {
            activity.unbindService(mServiceConn);
        }   
    }

IAB购买和消费:

public void buy(String sku){
        try {
            Bundle buyIntentBundle = mService.getBuyIntent(3, activity.getPackageName(), sku, "inapp", devPayload);
            //Bundle buyIntentBundle = mService.getBuyIntent(3, activity.getPackageName(), "android.test.purchased", "inapp", devPayload);

            PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
            if(pendingIntent != null){
                activity.startIntentSenderForResult(pendingIntent.getIntentSender(), REQ_CODE_BUY, new Intent(), Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(0));
                pD.show();
            }
            else{
                Toast.makeText(activity, R.string.error, Toast.LENGTH_LONG).show();
            }
        } catch (RemoteException e) {
            e.printStackTrace();
        } catch (SendIntentException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    public void consume(final String purchaseToken){
        Thread consumeThread = new Thread(new Runnable(){

            @Override
            public void run() {
                try {
                    int response = mService.consumePurchase(3, activity.getPackageName(), purchaseToken);
                    //int response = mService.consumePurchase(3, activity.getPackageName(), "inapp:com.mumble.artplace:android.test.purchased");
                    Log.d("response", Integer.toString(response));
                } catch (RemoteException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });
        consumeThread.start();
    }

处理购买回复:

    public void resolveResponse(int requestCode, int resultCode, Intent data){
        if(requestCode == REQ_CODE_BUY){
            if(resultCode == Activity.RESULT_OK){
                int responseCode = data.getIntExtra("RESPONSE_CODE", 0);
                String purchaseData = data.getStringExtra("INAPP_PURCHASE_DATA");
                String dataSignature = data.getStringExtra("INAPP_DATA_SIGNATURE");

                JSONObject jData;
                try {
                    if(responseCode == 0){
                        jData = new JSONObject(purchaseData);
                        String purchaseToken = jData.getString("purchaseToken");
                        String developerPayload = jData.getString("developerPayload");
                        if(developerPayload.equals(devPayload))){
                            consume(purchaseToken);
                        }
                    }
                } catch (JSONException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

                pD.dismiss();
            }
            else{
                if(resultCode == Activity.RESULT_CANCELED){
                    pD.dismiss();
                }
            }
        }
    }

当发生这种情况并且我点击“确定”时,它只返回一个responseCode RESULT_CANCEL和一个带有空的额外内容的Intent。 我已经尝试从我的设备中删除所有帐户,只留下开发人员一个,只留下测试帐户,并尝试使用其他手机,但没有成功。我真的不知道我哪里错了...... 请帮帮我,谢谢

2 个答案:

答案 0 :(得分:6)

Soomla IAB error while purchasing in Game on Android 这是我的问题,我认为是同样的问题,所以,   问题出在Google开发者控制台上,为了购买你必须发布apk,即使它是测试版或Alpha版,之后,你可以用测试人员批准的帐户进行测试。

答案 1 :(得分:0)

在我的情况下,这是产品ID的错误,Play商店和应用SKU_NAME中的产品ID应该与应用内结算相同。


在iab示例项目中没有正确提及哪一个是productId 在项目中 SKU_GAS =“gas” SKU_PREMIUM =“premium” 然后

“gas”“premium”必须在游戏商店上作为productId 提供。