我从使用旧的解析云代码转到 AWS 上的开源解析服务器,而 main.js 的这一部分不起作用。
var Stripe = require('stripe');
Stripe.initialize('sk_live_mylivekey');
var Mailgun = require('mailgun');
Mailgun.initialize("mydomain.mailgun.org");
Best Answer-推荐答案 strong>
开源 Parse 服务器中不提供 Stripe、Mailgun、Sendgrid、Twilio 等原生云代码模块。
同样使用官方的 npm 模块:
- Stripe npm module
- Mailgun npm module
引用:Migrate an existing Parse app - Github
注意:
Because the Parse hosted Cloud Code isn’t running a full node environment, there may be subtle differences in how your Cloud Code runs in Parse Server. We recommend exercising all your critical code paths to ensure full functionality.
关于android - 解析开源服务器云代码的工作方式与旧的不同,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36299064/
|