We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to implement it to Firebase Cloud functions but I'm always getting this error message:
Error: Functions did not deploy properly.
My code is very simple and the error comes as soon as i implement in-app-purchase. with or without configs.
const functions = require("firebase-functions"); const iap = require("in-app-purchase"); exports.validateReceipt = functions.https.onRequest(async (req, res) => { await iap.setup(); res.send("test"); });
The text was updated successfully, but these errors were encountered:
Thy this:
// Init cloud functions const functions = require('firebase-functions');
const admin = require('firebase-admin'); admin.initializeApp();
var IAPVerifier = require('in-app-purchase');
IAPVerifier.config({
// Configuration variables go here
});
Sorry, something went wrong.
No branches or pull requests
I try to implement it to Firebase Cloud functions but I'm always getting this error message:
Error: Functions did not deploy properly.
My code is very simple and the error comes as soon as i implement in-app-purchase. with or without configs.
The text was updated successfully, but these errors were encountered: