Commit c6280bb9 by 庄冰

api.js

parent 8e16b35c
......@@ -364,7 +364,10 @@ module.exports = function (app) {
if (result.status != 0) {
return res.end("fail");
}
return res.end(result.data);
var returnObj = {
"challenge": result.data, // 应用需要原样返回的值
};
return res.end(returnObj);
} catch (error) {
logCtl.error({
optitle: (new Date()).Format("yyyy-MM-dd hh:mm:ss") + "飞书小程序记录回调处理结果异常:,method=subscribeVerification",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment