Questions tagged [chargebee]
21 questions
2
votes
3 answers
Integrate CHARGEBEE library to LARAVEL
Im starting using LARAVEL last version 7.12 and I'm having an issue trying to integrate CHARGEBEE library to make request to Chargebee api.
I was reading that I can install packages with composer, I did it:
composer require…

Ember Cadima
- 21
- 1
1
vote
1 answer
Firebase emulator: see outgoing HTTP traffic
I have a Cloud Function that calls to Chargebee. In index.ts:
const chargeBee = new ChargeBee();
...
chargeBee.configure({
site,
api_key: apiKey
});
...
export const finalizeSignup = https.onCall(
async (info: SignupInfo, ctx:…

Joseph Zabinski
- 693
- 4
- 23
1
vote
0 answers
0
votes
1 answer
Class Not Found on Chargebee Library in Laravel
I installed Chargebee library to my Laravel web (v5.7).
But when I want to use the library, all the class from the library is not found.
Here is my code on the controller

Khalid Yahya
- 1
- 3
0
votes
0 answers
How to upgrade subscription plan on chargebee to active pro?
I have two plans, pro and basic.
When I registering on my app, it creates pro(trial) plan on chrgebee by default. When it expires, plan changes to basic, but I have button to change plan to pro, and when it calls function upgrade to pro, it creates…
0
votes
2 answers
How to replace a list of items in a subscription in chargebee
I have an issue where we need to be able to replace a list of items, with an new list where one item given as parameter is removed. (As far as I understand is this the only way to remove a item from an subscription with the product catalog…

torva
- 13
- 3
0
votes
1 answer
How can I fix Chargebee CSP Errors?
Ive got a problem by using Chargebee via Drop-In Script and Api.
I already added the following directives to the header:
enter image description here
Error:
enter image description here
Do we enter the Directives properly?
Api-key, Domain, Site is…
0
votes
1 answer
Why am I getting status:undefined from Chargebee API method validateVat?
I'm trying to user their VAT validation method with their script, but even when running their example I'm getting the same response:
https://www.chargebee.com/checkout-portal-docs/eu-vat-validation-function.html#integration
let cbInstance =…

Duveral
- 303
- 4
- 15
0
votes
0 answers
Pyinstaller and API Keys
I recently made a script, which is a single function fill(), runs in PyCharm with no problems
I used pyinstaller to convert to .exe: pyinstaller --onefile main.py: Works great
I added the following function: around…

jcruzer
- 77
- 6
0
votes
1 answer
How to list more than 100 customers using Chargebee Python SDK?
I want to list all customers in Chargebee, and currently I have 101 customers. I use chargebee.Customer.list({'limit': 100}) because in the documentation it says that "optional, integer, default=10, min=1, max=100".
Documentation link:…

Peijia Yu
- 1
- 1
0
votes
2 answers
chargebee js react wrapper is not working in typescript
I have installed chargebee react wrapper and when i create any tsx file and try to include
import { CardComponent, CardNumber, CardExpiry, CardCVV, Provider } from "@chargebee/chargebee-js-react-wrapper";
i am getting the error that
Could not…

Bilal Rabbi
- 1,602
- 2
- 18
- 39
0
votes
0 answers
Node.JS method ".request(function(error,result)" works locally but will not work in AWS Lambda with Chargebee libraries
Can anyone tell me why this methodology works locally but will not work in an AWS Lambda. Took us 2 days to figure out it was the request format. It is copied straight from Chargebee examples. I am a novice in Node.
await…

onedumbtrucker
- 11
- 2
0
votes
1 answer
Blazor Javascript Drop-In Script Not Working
I am working on integrating Chargebee into a Blazor app. The way the drop-in script for Chargebee works is I need to include a javascript script, which I am doing in my index.html file.