Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I created a merchant account in Paypal and I have a web site. I would like to get payment from my web site members without asking them to create Paypal accounts. I just want them redirected to a Paypal page with the total amount and my details, getting the payment through their credit card.
Which service do I have to use and how? Does anybody know a "for dummies" style documentation for this process? I am using PHP.
All paypal checkout pages have an option for the customer to pay using their credit/debit card if they do not have a paypal account and don't want to create one.
Please can you follow this answer. This should definitely help.
How do I allow the user to pay via PayPal's REST API, but without them having to register a PayPal account?
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am trying to develop a multivendor payment system in Laravel where each user is able to add their PayPal client_id and client_secret. So that each user is able to receive their payment in their own account.
If I understand correctly, so far Paypal adaptive allows for such kinds of system. However, it adaptive payment doesn't support any more new accounts/implementation.
So any suggestion that how can I achieve that? Any resource to tutorial for that?
If you have and account's client ID and secret, use that information to set up and process any checkouts with payments toward that particular account. There is no complexity for a checkout that pays a particular account you have credentials for.
If you need to pay multiple accounts simultaneously (which your question does not specify), which is something adaptive payments could do, there is no solution for this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
i want to create a user registration by sms verification. after entering mobile number in my website(php) will send(and also will be stored to database against user id) a random 4 or 6 digit code to users number. then user will have to enter that code to my websites confirmation page. then it will check that code with the stored code in the database. if it matches then user is verified. I want to know what will be the cheapest sms service i can use in india ? if there are any free ervice like this then it will be good(atleast for testing).
There are many message API providers in india. If you are looking for free service then it is not possible now a days. As per my knowledge and experience you can go with Idea cellular message Api. It is very fast and efficient in india. I dont know adjuct cost for that but you can find it in idea official website.
Every Api provider gives you some free messages for testing purpose so that you can check that api with your code. If you need any further help then contact me.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm setting up a shopping cart where there are one time paid products and a recurring payment product (subscription). A buyer can select both and proceed to PayPal checkout. This must be done with a single checkout. Please explain me how to achieve this using PayPal PayFlow Pro API. I'm coding with PHP.
Thanks in advance!
You can either make two separate calls to the PayFlow API (one to process the one-time payment for the paid products, and another to create the recurring profile), or you could just make a single call to create a recurring profile and include the OPTIONALTRX. When you include that you can set any amount you want to be processed immediately as a one-time payment when the profile gets created.
These documents will greatly help you with the flow of everything.
PayFlow Developer Guide
PayFlow Recurring Billing Guide
This PayPal PHP SDK will make the individual PayFlow calls very quick and easy for you. It comes with a PayFlowTransaction.php sample that is fully functional. All you would have to do is add/adjust parameters in that sample to match the calls you need to make based on the information in the documentation.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a tutorial which will show me how to accept paypal payments as I am not having much luck with the documentation.
In the tutorial, I just need to understand how to capture a unique identifier when the payment has been initiated, and then use the unique identifier to update the database record when payment confirms the payment via ipn.
Does such a tutorial exist?
Basically, I already have the payments working i.e. a user can make a payment and payment can send a notification to the ipn script, but I can't tell which payment paypal has accepted.
There guide is pretty well written and covers all of this:
https://cms.paypal.com/cms_content/en_US/files/developer/PP_OrderMgmt_IntegrationGuide.pdf
PayPal has multiple ways to accept payment. Here is the site to PayPal developer site where you will find all the options: https://www.x.com/community/ppx/dev-tools
Here is a good tutorial on how to integrate your shopping cart with PayPal Website Payments Standard.
The PayPalIPN class provided by the toolkit I developed handles the entire IPN confirmation under the hood. You only need to get the data and update the order in the database. Optionally, you can also notify the customer with your own customized invoice or other information.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hai,
I need a system that automatically transfer funds from one paypal account to another paypal account when i click on a button. Is there any paypal API with PHP to perform this task.
thanks
This is not actually that easy to Google because the Paypal API documentation is a mess. There are several different ways to do almost everything, and it seems like Paypal's expectation is that you memorize the brand names they have for services with the core functionality of those services.
A pain.
But there is already a good answer for this question here on stackoverflow.com
How to send money to any paypal account