|
@@ -0,0 +1,64 @@
|
|
|
+package com.hbc.hbc.utils;
|
|
|
+
|
|
|
+import android.content.Context;
|
|
|
+
|
|
|
+import com.hbc.hbc.R;
|
|
|
+import com.tencent.mm.opensdk.modelpay.PayReq;
|
|
|
+import com.tencent.mm.opensdk.openapi.IWXAPI;
|
|
|
+import com.tencent.mm.opensdk.openapi.WXAPIFactory;
|
|
|
+
|
|
|
+import org.json.JSONException;
|
|
|
+import org.json.JSONObject;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author Bei
|
|
|
+ * @date 2025/1/23
|
|
|
+ */
|
|
|
+public class WeChatPayUtils {
|
|
|
+
|
|
|
+ public static void weChatPay(Context context, String obj) {
|
|
|
+
|
|
|
+ String orderInfo = "";
|
|
|
+ String partnerId = "";
|
|
|
+ String prepayId = "";
|
|
|
+ String packageValue = "";
|
|
|
+ String nonceStr = "";
|
|
|
+ String timeStamp = "";
|
|
|
+ String sign = "";
|
|
|
+ try {
|
|
|
+ JSONObject json = new JSONObject(obj);
|
|
|
+ orderInfo = JsonUtils.getString(json, "OrderInfo");
|
|
|
+ String successUrl = JsonUtils.getString(json, "SuccessUrl");
|
|
|
+ String failUrl = JsonUtils.getString(json, "FailUrl");
|
|
|
+
|
|
|
+ Utils.putCookieInfo(context, context.getString(R.string.userdata), "callbackSuccess", successUrl);
|
|
|
+ Utils.putCookieInfo(context, context.getString(R.string.userdata), "callbackFail", failUrl);
|
|
|
+
|
|
|
+ JSONObject jsonObject = new JSONObject(orderInfo);
|
|
|
+ partnerId = JsonUtils.getString(jsonObject,"partnerId");
|
|
|
+ prepayId = JsonUtils.getString(jsonObject,"prepayId");
|
|
|
+// packageValue = JsonUtils.getString(jsonObject,"packageValue");
|
|
|
+ nonceStr = JsonUtils.getString(jsonObject,"nonceStr");
|
|
|
+ timeStamp = JsonUtils.getString(jsonObject,"timeStamp");
|
|
|
+ sign = JsonUtils.getString(jsonObject,"sign");
|
|
|
+
|
|
|
+ } catch (JSONException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ IWXAPI api = WXAPIFactory.createWXAPI(context, context.getResources().getString(R.string.wx_app_id), true);
|
|
|
+ api.registerApp(context.getResources().getString(R.string.wx_app_id));
|
|
|
+
|
|
|
+ PayReq request = new PayReq();
|
|
|
+ request.appId = context.getResources().getString(R.string.wx_app_id);
|
|
|
+ request.partnerId = partnerId;
|
|
|
+ request.prepayId = prepayId;
|
|
|
+ request.packageValue = "Sign=WXPay";
|
|
|
+ request.nonceStr = nonceStr;
|
|
|
+ request.timeStamp = timeStamp;
|
|
|
+ request.sign = sign;
|
|
|
+ api.sendReq(request);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|