提交 29b503e8 作者: 王进

调整参数顺序

上级 db478bc0
const domain = 'https://account.jinsdk.com' // SDK上报的接口域名
const pay_domain = 'https://pay.jinsdk.com' // 支付接口域名
const report = 'https://s.jinsdk.com/weixinmp/api.php' // 数据上报接口域名
const sdkPortLinks = {
init: domain + '/weixin/access_token.php', // 获取openid
active: domain + '/appInit.php', // SDK初始化接口
login: domain + '/login.php', // SDK登录接口,获取用户平台信息
order: pay_domain + '/pay.php', //订单接口
pay: pay_domain + '/notify/midas/pay.php' //扣费接口
}
class WechatSDK {
constructor(config?){
this.printf("SDK START...", 0)
this.debug = config&&config.debug? config.debug : 0
this.sdkinit()
}
private debug:number // 1是测试模式,用于printf函数输出
private userBtn:any // 用户授权按钮
private sdkinit() {
const that = this
that.userBtn = this.createUserInfoButton() // 创建用户授权按钮
that.userBtn.hide() // 隐藏按钮
//配置默认参数
that.ReportParams.productCode = that.sdkParams.product_code = SDKConfig.productCode
that.sdkParams.appid = SDKConfig.appid
that.sdkParams.version = SDKConfig.sdkVersion
const options = this.getOptionsInfo()
let queryObj = options.referrerInfo && options.referrerInfo.extraData && Object.keys(options.referrerInfo.extraData).length > 0 ? options.referrerInfo.extraData : {}
queryObj = that.deepCopy({}, options.query, queryObj)
that.printf("SDK -> p1:", 0)
that.printf(queryObj, 0)
that.ReportParams.from = queryObj.from || ''
that.ReportParams.tag = queryObj.tag || ''
that.ReportParams.fromOpenId = queryObj.fromId || ''
const p2 = this.getNetworkType().then(res => {
that.printf("SDK -> p2:", 0)
that.printf(res, 0)
that.ReportParams.networkType = res.networkType
}, err => { console.log(err) })
const p3 = this.getSystemInfo().then(res => {
that.printf("SDK -> p3:", 0)
that.printf(res, 0)
that.ReportParams.model = that.sdkParams.equipmentname = res.model
that.ReportParams.screenWidth = res.screenWidth
that.ReportParams.screenHeight = res.screenHeight
that.ReportParams.language = res.language
that.ReportParams.system = that.sdkParams.equipmentos = res.system
that.ReportParams.version = res.version
that.sdkParams.os = (res.system).split(' ')[0].toLowerCase()
}, err => { console.log(err) })
// 同步完所有参数后调用getUserOpenId
Promise.all([p2, p3]).then(res => {
console.log("队列结束....")
that.getUserOpenId()
}, err => { console.log(err) })
}
// 微信登录获取code,用code激活SDK换取openid
private getUserOpenId () {
const that = this
this.login().then(res => {
that.printf("SDK -> wechat login:", 0)
that.printf(res, 0)
const data = that.deepCopy({}, that.sdkParams, { // 拼上appid和code
appid: SDKConfig.appid,
code: res.code
})
that.sdkRequest(sdkPortLinks.init, data).then(res => {
if (res.code == 0) {
that.ReportParams.openId = that.sdkParams.open_id = that.sdkParams.uniqueid = res.data.openid
that.sdkParams.session_key = res.data.session_key
that.sdkActive() // SDK激活
} else {
that.printf(res.msg, 1)
}
}, err => { console.log(err) })
}, err => { console.log(err) })
}
// SDK激活
private sdkActive() {
var that = this
this.printf("SDK -> 激活:", 0)
this.printf(this.sdkParams, 0)
this.sdkRequest(sdkPortLinks.active, this.sdkParams).then(res => {
that.sdkParams.pay_channel = res.data.default_pay_channel
that.obj.initReady = 1 // 改变obj对象initReady状态
that.ReportData({ // 上报统计授权
action: 'activation'
})
}, err => { console.log(err) })
}
private obj = { initReady: 0 }
// 用户登陆接口,返回用户平台信息
public Login(LoginCallBack) {
const that = this
let val:number = 0
if( this.obj.initReady == 1) { // 已经激活成功
that.doAuthorize(LoginCallBack)
} else { // 监听SDK激活,等激活完成之后才执行登录操作
Object.defineProperty(that.obj, 'initReady',{
enumerable:true,
configurable:true,
get:function getter() { return val; },
set:function setter(newVal) {
//如果新设置的值跟之前的值是相等的,则不需要
if(newVal===val){ return; }
that.doAuthorize(LoginCallBack)
}
})
}
}
//用户授权操作
private doAuthorize(LoginCallBack) {
const that = this
// 用户授权
this.getUserInfo().then(res => {
if(res) { // 用户确认授权
that.doLogin(res, LoginCallBack)
} else {
console.log('用户取消授权。。。')
that.userBtn.show() // 显示授权按钮
that.userBtn.onTap(res => {
if(res.userInfo) that.doLogin(res, LoginCallBack)
})
}
}, err => {
console.log(err)
})
}
private doLogin(res, LoginCallBack) {
const that = this
// 获取用户信息
const userInfo = res
const UserObj = {
action: 'authorize',
nickName: encodeURI(res.userInfo.nickName), // 避免表情昵称
city: res.userInfo.city,
country: res.userInfo.country,
avatarUrl: res.userInfo.avatarUrl,
gender: res.userInfo.gender,
province: res.userInfo.province,
}
// 上报用户授权
that.ReportData(UserObj)
that.sdkParams.token = '' // 强制清空登录toekn
that.sdkRequest(sdkPortLinks.login, that.deepCopy({}, that.sdkParams, { nickname: UserObj.nickName }))
.then(res => {
if(res.code == 0) {
// 根据SDK返回用户状态来判断统计接口是走注册还是登录
const type = res.data.action == 'login' ? 'login' : 'register'
that.sdkParams.token = res.data.token // 记录用户toekn
that.ReportParams.userId = res.data.uid // 记录用户ID
that.ReportData({ action: type }) // 上报登录/注册
LoginCallBack(that.deepCopy({}, res.data, that.getOptionsInfo(), userInfo, {
os: (that.ReportParams.system).split(' ')[0], // 返回系统类型IOS或者android
session_key: that.sdkParams.session_key // 返回session_key
})) // 将用户信息拼上平台用户信息返回
that.userBtn.destroy() //登录成功后摧毁按钮
} else that.printf("Login: " + res.msg, 1)
}, err => { console.log(err) })
}
// SDK支付接口
public payOrder(Params) {
const that = this
that.MidasPaymentParams.offerId = SDKConfig.offerid
// 支付前先获取用户订单状态,如果没有未完成订单则继续支付
that.sdkRequest(sdkPortLinks.order, that.deepCopy({}, that.sdkParams, Params)).then(res => {
console.log("订单返回---->", res)
if (res.code == 0) {
if(res.data.weixin_mini_program_app_id) { // 跳小程序支付
const postParams = that.deepCopy({}, that.sdkParams, Params, {
weixin_mini_program_app_id: res.data.weixin_mini_program_app_id, // 跳转小程序的appid,获取新openid用
sub_product_code: res.data.sub_product_code, // 跳转小程序的productcode
pay_channel: res.data.pay_channel, // 支付方式改变
productKey: SDKConfig.productKey
}) // 合并后附上签名参数
const params = { // 跳转参数
appId: res.data.weixin_mini_program_app_id, // 跳转的小程序appid
path: '', // 跳转到首页
envVersion: 'trial', //跳转到体验版
extraData: postParams,
success: () => { console.log("跳转成功") },
fail: () => { console.log("跳转失败") }
}
that.navigateToMiniProgram(params)
} else {
// 根据返回的用户订单状态判断是新订单还是未完成订单
if (res.data.order_type == 1) { // 新订单
that.MidasPaymentParams.buyQuantity = <number>(Params.money/100) * <number>res.data.weixin_proportion // 充值金额
this.printf("SDK -> 发起支付参数:", 0)
this.printf(that.MidasPaymentParams, 0)
// 调微信米大师支付接口
that.pay(that.MidasPaymentParams)
.then(() => { // 支付成功
this.printf("SDK -> 支付成功:", 0)
this.printf(res, 0)
that.getCoins(that.deepCopy({}, that.sdkParams, { order_num: res.data.order_num }))
}, err => { // 支付失败
this.printf("SDK -> 支付失败:", 0)
this.printf(err, 0)
})
} else { // 已有未完成订单,弹窗提示
const params = {
title: SDKConfig.shareTitle,
content: '订单发货中,请稍候下单..'
}
that.showModal(params)
}
}
} else { // 输出订单失败消息
that.printf(res.msg, 1)
that.sdkAlert(res.msg)
}
}, err => { console.log(err) })
}
private getCoins(orderParams) { // 通知服务端扣费
this.printf("SDK -> 通知扣费:", 0)
this.printf(orderParams, 0)
this.sdkRequest(sdkPortLinks.pay, orderParams).then(res => {
this.printf("SDK -> 扣费成功:", 0)
})
}
// 客服
public Customer() {
const pparams = {} // 暂时留空,为以后H5充值准备
this.customer(pparams)
}
// 消息提示框
public sdkAlert(str) {
this.showMsg(str)
}
// 分享
public ShareApp(params?) {
const that = this
// 参数,记录分享的用户openid
const ShareParams = {
title: SDKConfig.shareTitle,
imageUrl: SDKConfig.shareImageUrl,
query: 'fromOpenId=' + that.ReportParams.openId + '&from=share&tag=0&'+params
}
return this.share(ShareParams)
}
// 退出小游戏
public exitApp() {
return this.exitWechatApp()
}
// SDK上报接口
private sdkRequest (link:string, portData) {
this.md5_sign(portData) // 附上签名参数
this.printf("SDK -> 接口上报参数:" + link, 0)
this.printf(portData, 0)
return this.request(link, portData)
}
// 数据上报接口,外部调用,参数中必须含有action值
public ReportData (portData) {
const that = this
portData = that.deepCopy({}, that.ReportParams, portData)
portData.time = Date.parse(new Date().toString()) // 获取当前时间戳秒
this.printf("SDK -> 数据上报:", 0)
this.printf(portData, 0)
this.request(report, portData, 'POST')
}
// 调用微信请求接口
private request(URI:string, Params:any, Method = 'GET') {
return this.fetchUri(URI, Params, Method).then(res => res.data)
}
/**
* 输出
* @param str 输出的字符串
* @param level 0:直接输出对象 1:输出错误信息 3:交由微信弹窗输出
* 当level:3时,obj需要包含 title:标题,content:内容
*/
private printf(obj: any, level: number = 3) {
if (this.debug == 1) {
switch (level){
case 0:
console.log(obj)
break
case 1:
console.log('%cSDK错误:' + obj, 'color:red')
break
case 3:
this.showModal(obj)
break
}
}
}
//接口签名,直接返回完整对象
private md5_sign (obj) {
obj.time = Date.parse(new Date().toString()) // 获取请求的时间戳秒
let keys = Object.keys(obj).sort();
let key_url="";
for(let i = 0; i < keys.length; i++) {
if (keys[i] != 'sign') key_url += keys[i] + '=' + obj[keys[i]] + '&'
}
key_url = key_url + SDKConfig.productKey
obj.sign = md5(key_url)
return obj
}
private isArray(arr) {
var toStr = Object.prototype.toString;
if (typeof Array.isArray === 'function') {
return Array.isArray(arr);
}
return toStr.call(arr) === '[object Array]';
}
private isPlainObject(obj) {
var toStr = Object.prototype.toString;
var hasOwn = Object.prototype.hasOwnProperty;
if (!obj || toStr.call(obj) !== '[object Object]') {
return false;
}
var hasOwnConstructor = hasOwn.call(obj, 'constructor');
var hasIsPrototypeOf = obj.constructor && obj.constructor.prototype && hasOwn.call(obj.constructor.prototype, 'isPrototypeOf');
if (obj.constructor && !hasOwnConstructor && !hasIsPrototypeOf) {
return false;
}
var key;
for (key in obj) { /**/ }
return typeof key === 'undefined' || hasOwn.call(obj, key);
}
// 数据深拷贝
public deepCopy(a, b, c?, d?, e?) {
const that = this
let options, name, src, copy, copyIsArray, clone;
let target = arguments[0];
let i = 1;
let length = arguments.length;
let deep = false;
if (typeof target === 'boolean') {
deep = target;
target = arguments[1] || {};
i = 2;
}
if (target == null || (typeof target !== 'object' && typeof target !== 'function')) {
target = {};
}
for (; i < length; ++i) {
options = arguments[i];
if (options != null) {
for (name in options) {
src = target[name];
copy = options[name];
if (target !== copy) {
if (deep && copy && (that.isPlainObject(copy) || (copyIsArray = that.isArray(copy)))) {
if (copyIsArray) {
copyIsArray = false;
clone = src && that.isArray(src) ? src : [];
} else {
clone = src && that.isPlainObject(src) ? src : {};
}
target[name] = that.deepCopy(deep, clone, copy);
} else if (typeof copy !== 'undefined') {
target[name] = copy;
}
}
}
}
}
return target
}
// 统计上报参数
private ReportParams = {
action: null, // 必填,事件类型
openId: null, // 必填,微信openid,通过code去SDK接口换取
userId: '', // 必传,用户ID
productCode: null, // 必填,产品代号,配置文件配置
from: null, // 必填,广告标识,附带在url上
tag: null, // 必填,创意标识,附带在url上
fromOpenId: null, // 选填,分享来源的用户openid
model: null, // 必填,手机型号,微信api获取
system: null, // 必填,操作系统,微信api获取
networkType: null, // 选填,网络类型,微信api获取
language: null, // 选填,微信设置的语言,微信api获取
version: null, // 选填,微信版本号,微信api获取
appVersion: null, // 选填,产品版本号,配置文件配置
screenWidth: null, // 选填,屏幕宽度,微信api获取
screenHeight: null, // 选填,屏幕高度,微信api获取
time: null // 必填,请求的时间戳(秒)
}
// SDK上报参数
private sdkParams = {
product_code: null, // 产品code
appid: null, // 小游戏appid
time: null, // 当前时间戳秒
uniqueid: '', // 设备唯一号
mac: '', // 网卡mac地址
idfa: '', // 苹果设备IDFA
open_id: null, // 用户openid
password: '', // 登录密码(微信免密)
source: 'WEIXIN', // 用户来源
token: '', // 登录成功返回
os: 'H5', // 系统类型
equipmentos: null, // 系统版本
equipmentname: null, // 手机型号
version: null, // SDK版本
package_code: '', // 渠道标识
sign: null, // 签名
unionid: '', // 用户Unionid,用于切支付
pay_channel: '', // 支付方式,初始化接口返回
client_type: 'weixin_minigame', // 客户端类型
session_key: '' // 用户session_key
}
// 米大师支付参数
private MidasPaymentParams = {
mode: 'game', // 支付的类型
env: '1', // 米大师环境配置, 0:正式环境, 1:沙盒模式
offerId: null, // 在米大师侧申请的应用id
currencyType: 'CNY', // 币种
platform: 'android',
buyQuantity: 10, // buyQuantity * 游戏币单价 = 限定的价格等级(1,3,6,8,12,18,25,30,40,45,50,60,68,73,78,88,98,108,118,128,148,168,188,198,328,648)
zoneId: '1', // 分区ID,默认1
}
// 定义wechat方法
private async getUserInfo():Promise<any> {
return new Promise((resolve, reject) => {
(wx as any).getUserInfo({
withCredentials: true,
success: function(res) {
resolve(res);
},
fail: function(res) {
reject(res)
}
})
}).catch((error) => {
console.error(error);
})
}
private async login():Promise<any> {
return new Promise((resolve, reject) => {
(wx as any).login({
success: (res) => {
resolve(res)
},
fail: (res) => {
reject(res)
}
})
}).catch((error) => {
console.error(error);
})
}
private async getNetworkType():Promise<any> {
return new Promise((resolve, reject) => {
(wx as any).getNetworkType({
success: (res) => {
resolve(res);
}
})
}).catch((error) => {
console.error(error);
})
}
private async getSystemInfo():Promise<any> {
return new Promise((resolve, reject) => {
(wx as any).getSystemInfo({
success: (res) => {
resolve(res);
}
})
}).catch((error) => {
console.error(error);
})
}
private async fetchUri(URI, DATA, METHOD):Promise<any> {
return new Promise((resolve, reject) => {
(wx as any).request({
url: URI,
method: METHOD,
data: DATA,
header: {
'Content-Type': 'json'
},
success: resolve,
fail: reject
})
}).catch((error) => {
console.log(error)
})
}
private showModal(DATA) {
(wx as any).showModal(this.deepCopy({}, DATA, {
cancelText: '取消',
confirmText: '确认'
}))
}
private async share(DATA):Promise<any> {
const that = this
return new Promise((resolve, reject) => {
(wx as any).shareAppMessage(that.deepCopy(DATA, {
success: function(res) {
resolve(res)
},
fail: function(res) {
reject(res)
},
complete() {}
}))
})
}
private async pay(params):Promise<any> {
const that = this
return new Promise((resolve, reject) => {
(wx as any).requestMidasPayment(that.deepCopy(params, {
success: function(res) {
resolve(res)
},
fail: function(res) {
reject(res)
},
complete: function() {
console.log("Rechare")
}
}))
})
}
private shareInit() {
(wx as any).showShareMenu({
withShareTicket: true,
success: () => {},
fail: () => {},
complete: () => {}
})
}
// 分享
public addShareEvent(CALLBACK, DATA?) {
const that = this;
const ShareParams = {
title: SDKConfig.shareTitle,
imageUrl: SDKConfig.shareImageUrl,
query: 'fromOpenId=' + that.ReportParams.openId + '&from=share&tag=0&' + DATA
};
(wx as any).onShareAppMessage(() => {
return that.deepCopy(DATA, CALLBACK)
})
that.shareInit()
}
private customer(params) {
(wx as any).openCustomerServiceConversation(params)
}
private navigateToMiniProgram(params) {
(wx as any).navigateToMiniProgram(params)
}
private showMsg(str) {
(wx as any).showToast({
title: str,
icon: 'none',
duration: 3000
})
}
private async exitWechatApp():Promise<any> {
return new Promise((resolve, reject) => {
(wx as any).exitMiniProgram({
success: function(res) {
console.log('退出成功')
resolve(res)
},
fail: function(res) {
console.log('退出失败')
reject(res)
}
})
})
}
// 获取启动参数
public getOptionsInfo() {
const that = this
const options = (wx as any).getLaunchOptionsSync()
if (Object.keys(options.query).length > 0 || Object.keys(options.referrerInfo).length > 0) {
const obj = {}
that.deepCopy(obj, options.query, options.referrerInfo.extraData) // 合并数据
return obj
} else {
return options
}
}
private createUserInfoButton() {
const UserInfoButton = (wx as any).createUserInfoButton({
type: 'text',
text: ' ',
style: {
left: 0,
top: 0,
width: 800,
height: 1200,
backgroundColor: 'rgba(0, 0, 0, 0)',
color: '#ffffff'
}
})
return UserInfoButton
}
}
// md5加密
const rotateLeft = (lValue,iShiftBits) => {return(lValue<<iShiftBits)|(lValue>>>(32-iShiftBits))};var addUnsigned=function(lX,lY){var lX4,lY4,lX8,lY8,lResult;lX8=(lX&2147483648);lY8=(lY&2147483648);lX4=(lX&1073741824);lY4=(lY&1073741824);lResult=(lX&1073741823)+(lY&1073741823);if(lX4&lY4){return(lResult^2147483648^lX8^lY8)}if(lX4|lY4){if(lResult&1073741824){return(lResult^3221225472^lX8^lY8)}else{return(lResult^1073741824^lX8^lY8)}}else{return(lResult^lX8^lY8)}};var F=function(x,y,z){return(x&y)|((~x)&z)};var G=function(x,y,z){return(x&z)|(y&(~z))};var H=function(x,y,z){return(x^y^z)};var I=function(x,y,z){return(y^(x|(~z)))};var FF=function(a,b,c,d,x,s,ac){a=addUnsigned(a,addUnsigned(addUnsigned(F(b,c,d),x),ac));return addUnsigned(rotateLeft(a,s),b)};var GG=function(a,b,c,d,x,s,ac){a=addUnsigned(a,addUnsigned(addUnsigned(G(b,c,d),x),ac));return addUnsigned(rotateLeft(a,s),b)};var HH=function(a,b,c,d,x,s,ac){a=addUnsigned(a,addUnsigned(addUnsigned(H(b,c,d),x),ac));return addUnsigned(rotateLeft(a,s),b)};var II=function(a,b,c,d,x,s,ac){a=addUnsigned(a,addUnsigned(addUnsigned(I(b,c,d),x),ac));return addUnsigned(rotateLeft(a,s),b)};var convertToWordArray=function(string){var lWordCount;var lMessageLength=string.length;var lNumberOfWordsTempOne=lMessageLength+8;var lNumberOfWordsTempTwo=(lNumberOfWordsTempOne-(lNumberOfWordsTempOne%64))/64;var lNumberOfWords=(lNumberOfWordsTempTwo+1)*16;var lWordArray=Array(lNumberOfWords-1);var lBytePosition=0;var lByteCount=0;while(lByteCount<lMessageLength){lWordCount=(lByteCount-(lByteCount%4))/4;lBytePosition=(lByteCount%4)*8;lWordArray[lWordCount]=(lWordArray[lWordCount]|(string.charCodeAt(lByteCount)<<lBytePosition));lByteCount++}lWordCount=(lByteCount-(lByteCount%4))/4;lBytePosition=(lByteCount%4)*8;lWordArray[lWordCount]=lWordArray[lWordCount]|(128<<lBytePosition);lWordArray[lNumberOfWords-2]=lMessageLength<<3;lWordArray[lNumberOfWords-1]=lMessageLength>>>29;return lWordArray};var wordToHex=function(lValue){var WordToHexValue="",WordToHexValueTemp="",lByte,lCount;for(lCount=0;lCount<=3;lCount++){lByte=(lValue>>>(lCount*8))&255;WordToHexValueTemp="0"+lByte.toString(16);WordToHexValue=WordToHexValue+WordToHexValueTemp.substr(WordToHexValueTemp.length-2,2)}return WordToHexValue};var uTF8Encode=function(string){string=string.replace(/\x0d\x0a/g,"\x0a");var output="";for(var n=0;n<string.length;n++){var c=string.charCodeAt(n);if(c<128){output+=String.fromCharCode(c)}else{if((c>127)&&(c<2048)){output+=String.fromCharCode((c>>6)|192);output+=String.fromCharCode((c&63)|128)}else{output+=String.fromCharCode((c>>12)|224);output+=String.fromCharCode(((c>>6)&63)|128);output+=String.fromCharCode((c&63)|128)}}}return output};function md5(string){var x=Array();var k,AA,BB,CC,DD,a,b,c,d;var S11=7,S12=12,S13=17,S14=22;var S21=5,S22=9,S23=14,S24=20;var S31=4,S32=11,S33=16,S34=23;var S41=6,S42=10,S43=15,S44=21;string=uTF8Encode(string);x=convertToWordArray(string);a=1732584193;b=4023233417;c=2562383102;d=271733878;for(k=0;k<x.length;k+=16){AA=a;BB=b;CC=c;DD=d;a=FF(a,b,c,d,x[k+0],S11,3614090360);d=FF(d,a,b,c,x[k+1],S12,3905402710);c=FF(c,d,a,b,x[k+2],S13,606105819);b=FF(b,c,d,a,x[k+3],S14,3250441966);a=FF(a,b,c,d,x[k+4],S11,4118548399);d=FF(d,a,b,c,x[k+5],S12,1200080426);c=FF(c,d,a,b,x[k+6],S13,2821735955);b=FF(b,c,d,a,x[k+7],S14,4249261313);a=FF(a,b,c,d,x[k+8],S11,1770035416);d=FF(d,a,b,c,x[k+9],S12,2336552879);c=FF(c,d,a,b,x[k+10],S13,4294925233);b=FF(b,c,d,a,x[k+11],S14,2304563134);a=FF(a,b,c,d,x[k+12],S11,1804603682);d=FF(d,a,b,c,x[k+13],S12,4254626195);c=FF(c,d,a,b,x[k+14],S13,2792965006);b=FF(b,c,d,a,x[k+15],S14,1236535329);a=GG(a,b,c,d,x[k+1],S21,4129170786);d=GG(d,a,b,c,x[k+6],S22,3225465664);c=GG(c,d,a,b,x[k+11],S23,643717713);b=GG(b,c,d,a,x[k+0],S24,3921069994);a=GG(a,b,c,d,x[k+5],S21,3593408605);d=GG(d,a,b,c,x[k+10],S22,38016083);c=GG(c,d,a,b,x[k+15],S23,3634488961);b=GG(b,c,d,a,x[k+4],S24,3889429448);a=GG(a,b,c,d,x[k+9],S21,568446438);d=GG(d,a,b,c,x[k+14],S22,3275163606);c=GG(c,d,a,b,x[k+3],S23,4107603335);b=GG(b,c,d,a,x[k+8],S24,1163531501);a=GG(a,b,c,d,x[k+13],S21,2850285829);d=GG(d,a,b,c,x[k+2],S22,4243563512);c=GG(c,d,a,b,x[k+7],S23,1735328473);b=GG(b,c,d,a,x[k+12],S24,2368359562);a=HH(a,b,c,d,x[k+5],S31,4294588738);d=HH(d,a,b,c,x[k+8],S32,2272392833);c=HH(c,d,a,b,x[k+11],S33,1839030562);b=HH(b,c,d,a,x[k+14],S34,4259657740);a=HH(a,b,c,d,x[k+1],S31,2763975236);d=HH(d,a,b,c,x[k+4],S32,1272893353);c=HH(c,d,a,b,x[k+7],S33,4139469664);b=HH(b,c,d,a,x[k+10],S34,3200236656);a=HH(a,b,c,d,x[k+13],S31,681279174);d=HH(d,a,b,c,x[k+0],S32,3936430074);c=HH(c,d,a,b,x[k+3],S33,3572445317);b=HH(b,c,d,a,x[k+6],S34,76029189);a=HH(a,b,c,d,x[k+9],S31,3654602809);d=HH(d,a,b,c,x[k+12],S32,3873151461);c=HH(c,d,a,b,x[k+15],S33,530742520);b=HH(b,c,d,a,x[k+2],S34,3299628645);a=II(a,b,c,d,x[k+0],S41,4096336452);d=II(d,a,b,c,x[k+7],S42,1126891415);c=II(c,d,a,b,x[k+14],S43,2878612391);b=II(b,c,d,a,x[k+5],S44,4237533241);a=II(a,b,c,d,x[k+12],S41,1700485571);d=II(d,a,b,c,x[k+3],S42,2399980690);c=II(c,d,a,b,x[k+10],S43,4293915773);b=II(b,c,d,a,x[k+1],S44,2240044497);a=II(a,b,c,d,x[k+8],S41,1873313359);d=II(d,a,b,c,x[k+15],S42,4264355552);c=II(c,d,a,b,x[k+6],S43,2734768916);b=II(b,c,d,a,x[k+13],S44,1309151649);a=II(a,b,c,d,x[k+4],S41,4149444226);d=II(d,a,b,c,x[k+11],S42,3174756917);c=II(c,d,a,b,x[k+2],S43,718787259);b=II(b,c,d,a,x[k+9],S44,3951481745);a=addUnsigned(a,AA);b=addUnsigned(b,BB);c=addUnsigned(c,CC);d=addUnsigned(d,DD)}var tempValue=wordToHex(a)+wordToHex(b)+wordToHex(c)+wordToHex(d);return tempValue.toLowerCase()};
\ No newline at end of file
const SDKConfig = {
// 配置项目参数
appid: "wx8ccb2ef82e44df92", // 换openid
appName: "测试应用", // 应用名称
productCode: "b5488a667a66561aa97ce2a70137487e", // 产品code
productKey: "d0e3e7998c6b3b47dd9e42c3769edd2c", // 产品key,用于生成签名
appVersion: "产品版本号(cp)", // 产品版本号
offerid: "1450016203", // 支付
sdkVersion: "1.0.0", // SDK版本号,SDK接口需要
shareTitle: "鲸鱼游戏棒棒棒", // 分享标题
shareImageUrl: "https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=3903587193,374462562&fm=27&gp=0.jpg" //分享图片链接
// 结束
}
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论