【问题标题】:Integrating stripe with android app将条带与 Android 应用程序集成
【发布时间】:2012-12-11 09:12:23
【问题描述】:

我正在尝试从我的 android 应用程序中支持条带支付,但它无法运行。 java不兼容吗?我的代码和错误如下:

package io.noq.kiosk.android;

import java.util.HashMap;
import java.util.Map;
import com.stripe.Stripe;
import com.stripe.exception.APIConnectionException;
import com.stripe.exception.AuthenticationException;

import com.stripe.exception.CardException;
import com.stripe.exception.InvalidRequestException;
import com.stripe.exception.StripeException;
import com.stripe.model.Charge;

import io.noq.android.R;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;

public class OnSwipeActivity extends Activity {
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        Stripe.apiKey = "the secret (intentionally omitting)";
        Map<String, Object> chargeMap = new HashMap<String, Object>();

        chargeMap.put("amount", 100);
        chargeMap.put("currency", "usd");

        Map<String, Object> cardMap = new HashMap<String, Object>();
        cardMap.put("number", "4242424242424242");
        cardMap.put("exp_month", 12);
        cardMap.put("exp_year", 2013);
        chargeMap.put("card", cardMap);

        try {
            Charge charge = Charge.create(chargeMap);
            System.out.println(charge);
            Log.i("Status is: " + "exiting try onCreate-PayActivity", "let's see what goes out....");
            System.out.println("Status is: "+ "exiting try onCreate-PayActivity");
        } catch (CardException e) {
            // Since it's a decline, CardException will be caught
            System.out.println("CardException is: " + e.getCode());
            System.out.println("CardException is: " + e.getParam());
            Log.i(OnSwipeActivity.class.getName(), "e.getCode() ...." + e.getCode());
        } catch (InvalidRequestException e) {
            // Invalid parameters were supplied to Stripe's API
            System.out.println("InvalidRequestException: " + e.getMessage());
            Log.i(OnSwipeActivity.class.getName(),"e.getCode() ...." + e.getCause());
        } catch (AuthenticationException e) {
            // Authentication with Stripe's API failed (maybe you changed API keys recently)
            System.out.println("AuthenticationException: " + e.getMessage());
            Log.i(OnSwipeActivity.class.getName(), "e.getCode() ...." + e.getCause());
        } catch (APIConnectionException e) {
            // Network communication with Stripe failed
            System.out.println("APIConnectionException: " + e.getMessage());
            Log.i(OnSwipeActivity.class.getName(), "e.getCode() ...." + e.getCause());
        } catch (StripeException e) {
            // Display a very generic error to the user, and maybe send yourself an email
            System.out.println("StripeException: " + e.getMessage());
            Log.i(OnSwipeActivity.class.getName(), "e.getCode() ...." + e.getCause());
        } catch (Exception e) {
            // Something else happened, completely unrelated to Stripe
            System.out.println("Exception: " + e.getMessage());
            Log.i(OnSwipeActivity.class.getName(), "e.getCode() ...." + e.getCause());
        }
    }
}

这些是错误:

12-25 05:34:22.625:W/dalvikvm(801):threadid=1:线程以未捕获的异常退出 (group=0x40a70930)

12-25 05:34:22.647:E/AndroidRuntime(801):致命异常:main

12-25 05:34:22.647: E/AndroidRuntime(801): java.lang.NoClassDefFoundError com.stripe.Stripe

12-25 05:34:22.647:E/AndroidRuntime(801):在 io.noq.kiosk.android.OnSwipeActivity.onCreate(OnSwipeActivity.java:26)

12-25 05:34:22.647: E/AndroidRuntime(801): 在 android.app.Activity.performCreate(Activity.java:5104)

12-25 05:34:22.647: E/AndroidRuntime(801): 在 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)

12-25 05:34:22.647:E/AndroidRuntime(801):在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)

12-25 05:34:22.647:E/AndroidRuntime(801):在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)

12-25 05:34:22.647: E/AndroidRuntime(801): at android.app.ActivityThread.access$600(ActivityThread.java:141)

12-25 05:34:22.647: E/AndroidRuntime(801): 在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)

12-25 05:34:22.647: E/AndroidRuntime(801): 在 android.os.Handler.dispatchMessage(Handler.java:99)

12-25 05:34:22.647: E/AndroidRuntime(801): 在 android.os.Looper.loop(Looper.java:137)

12-25 05:34:22.647: E/AndroidRuntime(801): 在 android.app.ActivityThread.main(ActivityThread.java:5039)

12-25 05:34:22.647: E/AndroidRuntime(801): at java.lang.reflect.Method.invokeNative(Native Method)

12-25 05:34:22.647: E/AndroidRuntime(801): at java.lang.reflect.Method.invoke(Method.java:511)

12-25 05:34:22.647: E/AndroidRuntime(801): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)

12-25 05:34:22.647: E/AndroidRuntime(801): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)

12-25 05:34:22.647: E/AndroidRuntime(801): at dalvik.system.NativeStart.main(Native Method)

【问题讨论】:

标签: java android stripe-payments


【解决方案1】:

您可以在 android 项目上使用 Strip java 库。我已经使用 StripTest 的 Test 类实现了一个 Poc

您必须将库导入为图片:

您可以使用示例代码进行测试:

public class MainActivity extends Activity {
    public static final String TAG                 = "TestStrip";
    static Map<String, Object> defaultCardParams   = new HashMap<String, Object>();
    static Map<String, Object> defaultChargeParams = new HashMap<String, Object>();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Stripe.apiKey = "tGN0bIwXnHdwOa85VABjPdSn8nWY7G7I";
        init();
        Map<String, Object> chargeMap = new HashMap<String, Object>();
        chargeMap.put("amount", 100);
        chargeMap.put("currency", "usd");
        Map<String, Object> cardMap = new HashMap<String, Object>();
        cardMap.put("number", "4242424242424242");
        cardMap.put("exp_month", 12);
        cardMap.put("exp_year", 2013);
        chargeMap.put("card", cardMap);

        try {
            Charge createdCharge = Charge.create(defaultChargeParams);
            Fee fee = createdCharge.getFeeDetails().get(0);
            Preconditions.checkState("stripe_fee".equals(fee.getType()), "Stripe fee error.");
            Preconditions.checkState(createdCharge.getFee() == fee.getAmount(), "Error ");
        } catch (StripeException e) {
            // Display a very generic error to the user, and maybe send yourself an email
            Log.e(TAG, "e.getCode() ...." + e.getCause());
        }
    }

    private void init() {
        defaultCardParams.put("number", "4242424242424242");
        defaultCardParams.put("exp_month", 12);
        defaultCardParams.put("exp_year", 2015);
        defaultCardParams.put("cvc", "123");
        defaultCardParams.put("name", "Java Bindings Cardholder");
        defaultCardParams.put("address_line1", "140 2nd Street");
        defaultCardParams.put("address_line2", "4th Floor");
        defaultCardParams.put("address_city", "San Francisco");
        defaultCardParams.put("address_zip", "94105");
        defaultCardParams.put("address_state", "CA");
        defaultCardParams.put("address_country", "USA");
        defaultChargeParams.put("amount", 100);
        defaultChargeParams.put("currency", "usd");
        defaultChargeParams.put("card", defaultCardParams);
    }
}

不要忘记添加到 android 清单中。 如果您需要示例项目源,请给我发邮件。

【讨论】:

  • 嗨 Anis,我正在开发一个 Android 应用程序,用户将使用信用卡付款,我会收到钱。我怎样才能使用条纹。请帮帮我。
  • @Anis:请提供我通过stripe sdk支付的源代码。
  • 必须先有一个stripe账号,然后参考stripe教程。如果您只是在寻找通过信用卡付款,还有许多其他解决方案。见:stackoverflow.com/questions/3564482/…
【解决方案2】:
In Android Studio
add in gradle 
 compile 'com.stripe:stripe-android:+'
==============================================

 Card card = new Card(cardnumber,exp.month,exp.year,cvv);
boolean validation = card.validateCard();
        if (validation) {
            startProgress();
            new Stripe().createToken(
                    card,
                    PUBLISHABLE_STRIPE_KEY,
                    new TokenCallback() {
                        public void onSuccess(Token token) {
                            // you can get transcation token
                        }
                        public void onError(Exception error) {
                            handleError(error.getLocalizedMessage());
                            finishProgress();
                        }
                    });
        } else if (!card.validateNumber()) {
            handleError("The card number that you entered is invalid");
        } else if (!card.validateExpiryDate()) {
            handleError("The expiration date that you entered is invalid");
        } else if (!card.validateCVC()) {
            handleError("The CVC code that you entered is invalid");
        } else {
            handleError("The card details that you entered are invalid");
        }

【讨论】:

    猜你喜欢
    • 2013-08-18
    • 1970-01-01
    • 2023-03-22
    • 1970-01-01
    • 2016-08-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多