Http API觸發小程序雲函數案例

一、建立雲函數

在雲開發中建立雲函數(sum,調用須要兩個參數:a、b):html

 

二、invokeCloudFunction觸發雲函數

const request = require('request');
const APPID = "你的id";
const APPSECRET = "你的祕鑰,獲取APPID同樣差很少";
const URL = `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${APPID}&secret=${APPSECRET}`;

function invokecloudfunction(access_token) {
    const FUNCTION_NAME = 'sum';
    const ENV = '雲服務環境id';
    const INVOKE_CLOUD_FUNCTION_URL = `https://api.weixin.qq.com/tcb/invokecloudfunction?access_token=${access_token}&env=${ENV}&name=${FUNCTION_NAME}`;
    return new Promise(function(resolve,reject) {
        request.post({
            url:INVOKE_CLOUD_FUNCTION_URL,
            json: {
                a:1,
                b:2
            }
           }, function(err, httpResponse,body) {
        if (err) {
            reject(err);
        } else {
            resolve(body);
        }
    })});
}
// 獲取token
function getAccessToken() {
    return new Promise(function(resolve,reject) {
        request.get(URL, function(err, httpResponse, body) {
            if (err) {
                reject(err);
            } else {
                resolve(JSON.parse(body));
            }
        });
    })
}

// 觸發雲函數
getAccessToken().then((_body)=> {
    const {access_token} = _body;
    return invokecloudfunction(access_token);

}).then(body => {
    console.log(body);
}).catch(err => {
    console.log(err);
})

 

 三、注意事項

屬性 類型 默認值 必填 說明
access_token string   接口調用憑證
env string   雲開發環境ID
name string   雲函數名稱
POSTBODY string   雲函數的傳入參數,具體結構由開發者定義。

 

一開始根據官方文檔我使用postman請求,發現一個問題使用params帶參數請求,雲函數後臺居然接收不到參數json

 

 

解決辦法:POSTBODY要寫標準的json格式,雙引號  不然接收不了api

相關文章
相關標籤/搜索