asked before similar … helped me ( newbie ). Not technically plugin ( api connector ).
Stripe’s capable of maintain state ( listofproducts , listOfPrices ) in support of following use case:
while products being added to list ( intended purchase this session )
- each items list in the “buy now” has ref & ID points to product’s priceId in stripe DB
- list of items im buying is added to until onSubmit payment
AT this point you have refs to [ stripe priceID corresponding to items in cart ]
Now make a call on stripe/create/session passing in the list . If you can use curl example in upper right, in a term session, you can exec the call, parsing the response for the url property value at the end. Plug that into your browser and you can finish the payment.
In workflow, after i initialized bubble’s analog of the Curl call to create/session , i was able to use its “result” to open the extern page on the CC form & stripe payment ( i did not have to code the block of JS in the other answer)
similar work tldr;