I am working on a project about payments with stripe, I have done the Api for mobile with Laravel. I have also done a admin panel to watch and manage the data of the mobile. Now what I need to do is set payments for mobile stripe. Can u help me on the idea now, do i need to create Api for mobile to make payments like on a website stripe payments or mobile can use stripe api and just post me the data for 'user_subscriptions' and than this data can be watched by my admin panel.
Thanks in advance for your time if you stop by!
You can use Webhooks for this for example once a payment is done Stripe Server will automatically call a API on your server with all the necessary data.
Related
I have made a php based website and working on payment integration now.
I want to add upi payment option with paytm, google pay, phonepe and bhim.
Once user clicks on icon, appropriate app with predefined VPA and AMOUNT should get loaded
Please help
The way to do this is to follow the UPI linking specification (page 5).
Assuming that the link will be presented on a mobile web browser, your link should look something like: upi://pay?pa=<VPA>&am=<AMOUNT>
You can integrate the UPI intent solution provided by paytm. This will work fine in mobile view, through this integration you will get the deeplink.
You need to call the deeplink provided which will invoke all the UPI PSP Apps on the device and shown to the user with payment amount already filled.
Just for your information UPI intent will not work in web/desktop. You can integrate UPI collect to support web/desktop payment.
I am trying to create app id with pro account.I have integrated paypal Getvarified status api with sandbox APP Id .Its working fine.For integrate that api i need live app id ,I am using LIVE REST API STEPS from following link:
http://geekmechanics.weebly.com/paypal-rest
then api code display the app id wrong error.
I am stucked here from last 3 days .Anyone can help me please.Thanks In Advance.
Rest APP id is different from Adaptive APP id. Getverified status API needs Adaptive APP ID. Please refer the following link:https://www.paypal-apps.com/user/my-account/applications. Sign into your PayPal account and submit the application. For PayPal support refer the following link: https://www.paypal-techsupport.com/app/ask.
I am using REST PayPal API in my Laravel project with the help of this link. and it is working fine. Now I need Recurring Payments using PayPal functionality in my project.
For REST API in PayPal you can use the billing-plans as describe in here. There is a lot of operation you can do with billing-plans and also you can create the plans without having the plan to be active.
I am trying to integrate Stripe on a Symfony2 project, and the only payment method I see on their documentation is the "Pay with card" button https://stripe.com/docs/checkout which creates an embedded popup on my project. But the problem is that I need the users to insert their credit card number on Stripe's website, just like Paypal does. Is there any payment method that Stripe provides, and get all the user's informations from a form that is on their website?
Thank you.
Stripe doesn't offer a redirection to its site to collect card details. (source)
In most instances, buyers don't even know they're using Stripe to pay.
To collect card details and turn them into a token, you can either:
use Checkout, a premade form with some customization options, or
make your own form using Stripe.js.
If neither of these is an option for you, you can check the list of Stripe third-party integrations to see if something fits your needs.
This is now possible.
Stripe customers are now able to use Client-only Checkout feature which is currently in beta. Flow is the same as with PayPal - users will be redirected to Stripe-hosted checkout website.
Directing customers to Stripe to make payments online
i have a client that provide a service on his website.he wants to automate the service orders.
the service has these steps:
1- user submit a form with request.
2- my client review the request, validate it and use the info in this request to :
3- login to another website
4- buy a product from this website using his paypal account.
5- downlad and send the product in email to the user.
i was able to automate all of this using curl.the only problem i have is the purchase process using papal.i didn't deal with paypal before.so i want to know if i can just submit the papal form on the purchase website using curl.or this will not work?
while searching i found something about papal IPN.but i don't know if my client have this IPN in his papal account or not? also, he does not want to give me his papal info. is there is anyway i can do this with fake paypal account to try it?
thank you so much.
First of all, sign up for a PayPal sandbox account: https://developer.paypal.com/devscr?cmd=_signup-run
It's a really slick system PayPal put together for developers to test out stuff.
Secondly, review the PayPal API's at:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/library_download_sdks
I believe all you need is the PHP Name-Value pair or Website Payments Standard interfaces.
IPN stands for Instant Payment Notification, it's a way for PayPal to tell you that a payment was made.
What you are looking for is either the PayPal NVP or SOAP interfaces.