收藏
评论

云开发支付的代码,有需要的进。

真机测试已通过。你照抄就行,保证可通过。

最新完美版本可供参考:

https://developers.weixin.qq.com/community/develop/article/doc/0004c4a50a03107eaa79f03cc56c13


小程序端:

wx.cloud.callFunction({

    name: 'getPay' ,

    data: {

        total_fee: parseFloat(0.01).toFixed(2) * 100,

        attach: 'anything',

        body: 'whatever'

    }

})

.then( res => {

    wx.requestPayment({

        appId: res.result.appid,

        timeStamp: res.result.timeStamp,

        nonceStr: res.result.nonce_str,

        package: 'prepay_id=' + res.result.prepay_id,

        signType: 'MD5',

        paySign: res.result.paySign,

        success: res => {

            console.log(res)

        }

    })

})


云函数:getPay

getPay目录下共两个文件:

1、index.js

2、package.json


index.js代码如下:


const key = "YOURKEY1234YOURKEY1234YOURKEY123"//这是商户的key,不是小程序的密钥,32位。

const mch_id = "1413090000" //你的商户号


//将以上的两个参数换成你的,然后以下可以不用改一个字照抄


const rp = require('request-promise')

const crypto = require('crypto')


function paysign({ ...args }) {

    let sa = []

    for (let k in args) sa.push( k + '=' + args[k])

    sa.push( 'key=' + key)

    return crypto.createHash('md5').update(sa.join('&'), 'utf8').digest('hex').toUpperCase()

}


exports.main = async (event, context) => {

    const appid = event.userInfo.appId

    const openid = event.userInfo.openId

    const attach = event.attach

    const body = event.body

    const total_fee = event.total_fee

    const notify_url = "https://whatever.com/notify"

    const spbill_create_ip = "118.89.40.200"

    const nonce_str = Math.random().toString(36).substr(2, 15)

    const timeStamp = parseInt(Date.now() / 1000) + ''

    const out_trade_no = "otn" + nonce_str + timeStamp

    

    let formData = "<xml>"

    formData += "<appid>" + appid + "</appid>"

    formData += "<attach>" + attach + "</attach>"

    formData += "<body>" + body + "</body>"

    formData += "<mch_id>" + mch_id + "</mch_id>"

    formData += "<nonce_str>" + nonce_str + "</nonce_str>"

    formData += "<notify_url>" + notify_url + "</notify_url>"

    formData += "<openid>" + openid + "</openid>"

    formData += "<out_trade_no>" + out_trade_no + "</out_trade_no>"

    formData += "<spbill_create_ip>" + spbill_create_ip + "</spbill_create_ip>"

    formData += "<total_fee>" + total_fee + "</total_fee>"

    formData += "<trade_type>JSAPI</trade_type>"

    formData += "<sign>" + paysign({ appid, attach, body, mch_id, nonce_str, notify_url, openid, out_trade_no, spbill_create_ip, total_fee, trade_type: 'JSAPI' }) + "</sign>"

    formData += "</xml>"

    

    let res = await rp({ url: "https://api.mch.weixin.qq.com/pay/unifiedorder", method: 'POST',body: formData})

    let xml = res.toString("utf-8")

    if (xml.indexOf('prepay_id')<0) return xml

    let prepay_id = xml.split("<prepay_id>")[1].split("</prepay_id>")[0].split('[')[2].split(']')[0]

    let paySign = paysign({ appId: appid, nonceStr: nonce_str, package: ('prepay_id=' + prepay_id), signType: 'MD5', timeStamp: timeStamp })

    return { appid, nonce_str, timeStamp, prepay_id, paySign } 

}


package.json 代码如下:


{

    "name": "getPay",

    "version": "1.0.0",

    "description": "",

    "main": "index.js",

    "scripts": {

    "test": "echo \"Error: no test specified\" && exit 1"

    },

    "author": "youself",

    "license": "ISC",

    "dependencies": {

        "crypto": "^1.0.1",

        "request-promise": "^4.2.2"

    }

}


最后选择:上传和部署:云端安装依赖。

最后一次编辑于  2019-12-14
收藏

30 个评论

  • 付森
    付森
    2019-11-16

    VM119:1 requestPayment:fail parameter error: parameter.timeStamp should be String instead of Undefined;parameter.nonceStr should be String instead of Undefined;parameter.paySign should be String instead of Undefined;

    这个是为什么啊


    2019-11-16
    赞同
    回复 4
  • 郑旭东
    郑旭东
    2019-10-21

    学习。

    这是看起来云调用还没有正儿八经支持微信支付才搞这么复杂?而且还没有服务端回调机制,不知道支付成功了没有。

    2019-10-21
    赞同
    回复 5
  • 聂健
    聂健
    2019-07-19

    谢谢,我们前世有缘分呀。

    2019-07-19
    赞同
    回复
  • 9
    9
    2019-07-01

    太牛逼了 , 学了一天没学会, 在你这秒懂

    2019-07-01
    赞同
    回复
  • 2019-05-27

    老张你好,返回的结果是这样是因为什么呢? <xml><return_code><![CDATA[FAIL]]></return_code>
    <return_msg><![CDATA[签名错误]]></return_msg>
    </xml>

    2019-05-27
    赞同
    回复 2
  • 华·江湖码仔
    华·江湖码仔
    2019-05-21

    返回结果

    你好老张 !"<xml><return_code><![CDATA[FAIL]]></return_code>\n<return_msg><![CDATA[商户号该产品权限未开通,请前往商户平台>产品中心检查后重试]]></return_msg>\n</xml>"

    云开发里函数日志报这个

    2019-05-21
    赞同
    回复
  • 华·江湖码仔
    华·江湖码仔
    2019-05-21

    你好老张!我的报这个错是片回事?requestPayment:fail parameter error: parameter.timeStamp should be String instead of Undefined;parameter.nonceStr should be String instead of Undefined;parameter.paySign should be String instead of Undefined;

    2019-05-21
    赞同
    回复
  • 张忠山
    张忠山
    2019-05-20

    mark

    2019-05-20
    赞同
    回复
  • ABCdeful
    ABCdeful
    2019-05-06

    大哥,你这个云函数就没有返回值呀

    2019-05-06
    赞同
    回复 7
    • 老张
      老张
      2019-05-06

      可以设断点调试看看。

      2019-05-06
      回复
    • ABCdeful
      ABCdeful
      2019-05-07回复老张

      大哥,已经调试通了,但是想问,怎么改支付的金额的。调试的时候,支付一直是1分钱

      2019-05-07
      回复
    • 老张
      老张
      2019-05-07回复ABCdeful

      汗。此时无语。

      2019-05-07
      回复
    • ABCdeful
      ABCdeful
      2019-05-07回复老张

      已查明

      2019-05-07
      回复
    • 2019-05-27

      你好,请问你没有返回值后来怎么调试通的呀

      2019-05-27
      回复
    查看更多(2)
  • 2018-12-24

    张哥  你这个 key  是商户平台里面的  api秘钥吗

    2018-12-24
    赞同
    回复 4
    • 老张
      老张
      2018-12-26

      是这个。

      2018-12-26
      回复
    • 2018-12-26

      恩恩  成功了  谢谢大佬

      2018-12-26
      回复
    • 2018-12-31回复老张

      老张给我写个自己服务器的小程序支付,我付费,行的话加我微信13998854187

      2018-12-31
      1
      回复
    • 老张
      老张
      2019-01-03回复

      汗,我的这些代码,在自己服务器上运行是通用的,稍改改就行了的,再加上一个回调,你们的后台程序员肯定秒懂啊。

      2019-01-03
      回复

正在加载...

登录 后发表内容