This topic is locked

STRIPE PAYMENT REST API

11/25/2023 6:30:53 PM
PHPRunner General questions
abidcastaneda author

Hello,

I am trying to connect to STRIPE Payments using the REST API function on PHPRunner, but no luck, has anyone done this? Can anyone shed some light on the subject? When I contacted PHPRunner support, they told me that STRIPE Payments was a payment gateway, not a REST API, and yes, it is a payment gateway, but it has it's own REST API for their customers.

Can someone please help me with this?

HJB 11/26/2023

https://stripe.com/docs/api?lang=php

https://github.com/stripe/stripe-php

Manual Installation

If you do not wish to use Composer, you can download the latest release. Then, to use the bindings, include the init.php file.

require_once '/path/to/stripe-php/init.php';

https://github.com/stripe/stripe-php/releases

unquote

1st, once the term API is becoming a theme, you need to look whether or not ready-made PHP scripts are available. Next,
to run testing under step-by-step, you need an API key provided by STRIPE to do so. In this case, I think you need to run
a manual installation as the so called COMPOSER is used in other apps. HTH HJB

abidcastaneda author 3/12/2024

Thanks for your reply,

The information you just posted is the information related as to how to call stripe payments api from any php application, but I want to use the API feature that already comes with PHPRunner. So I would need to know what kind of authoritzation method should I use (first) and then, what info goes where.

I already have a stripe payments api key and have used it in other non - phprunner projects, but I really want to use it with the phprunner built in API feature.

img alt

img alt

img alt

HJB 3/13/2024

https://xlinesoft.com/livedemo/shopcart/client/login.php?return=true

Login as ADMIN into SHOPPING CART Live demo and drill down to:

img alt

https://xlinesoft.com/phprunner/docs/about-rest-api.htm

Is showing the available REST API commands to pull data from a remote database
into PHPRunner. Certainly not the right functionalities for what you intend to do.

abidcastaneda author 3/19/2024

Thank you, ai will try it.