-
Notifications
You must be signed in to change notification settings - Fork 544
Open
Description
Describe the bug
微信支付,安卓正常,但是IOS提示 商户传入的appid参数不正确。
//微信APPID
static String wxAppId = "APPIDwx26xxxxxxx";
//微信APPID(ios使用)
static String wxAppIdForIos = "wx26xxxxxxx";
String appId;
if (Platform.isAndroid) {
appId = wxAppId;
} else {
appId = wxAppIdForIos;
}
原本都是用的上方那个Appid,安卓支付正常,后面发现ios不能支付,所以增加了一个ios专用的id,去除了前缀APPID。
想了解一下是什么原因。
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels