How to access line items metadata in Stripe checkout session using PHP
How do you access the line items metadata for each product when using php and alllineitems? $checkout_lineitems = $stripe->checkout->sessions->allLineItems( $_GET['session_id'], [] ); There seems to be no clear documentation for this. Also if I set the name and description for…