payment-gateway

Micropayment processing using Paypal or other payment processing service?

情到浓时终转凉″ 提交于 2019-12-04 05:38:41
Currently, I use PayPal for payment processing. Almost 90% of the items are sold for $.99 and would like to use Paypals's Micropayment account, but PayPal states "support for Micropayments to merchants for US to US, GB to GB, AU to AU, and EU to EU transactions". My company is located in the US but the customers are very global. Does this mean using Micropayment option, I can't take payment from someone who lives in Europe or outside the US? Currently I am using the regular account and I am paying $.34 for each sale, which is very unprofitable. Are there other payment processing service I can

Paypal API - Can we transfer money to multiple accounts in a transaction?

≡放荡痞女 提交于 2019-12-04 03:41:36
问题 A proposed scenario is, assume the shopping cart site, where buyer has to pay for a product. The sold product costs will be transferred to the respective merchant. Here, the website owner has to be paid(commission) for the purchased product. Is it possible in Paypal? Right now, I am using Paypal checkout. Your ideas/suggestions would be helpful. Please do it. 回答1: There are a number of ways you could set this up. You could use the Adaptive Payments platform, specifically the Pay API, to

Which is better approach between fsockopen and curl?

醉酒当歌 提交于 2019-12-04 00:55:57
I am creating an app for Automated Recurring Billing. Please let me know which option should I opt for sending the request to server fsockeopen curl and why one is better than another? i would recommend you curl, because of the configurable options. e.g. ssl Femi I would recommend using PHP's stream contexts with the built in functions: http://us3.php.net/manual/en/book.stream.php . Full HTTP/S functionality and integrates nicely with fopen / file_get_contents functions. You can (for example) do a POST like this: $chunk = file_get_contents("https://graph.facebook.com/oauth/access_token?client

How to integrate a “donate” button into a website in India?

限于喜欢 提交于 2019-12-03 23:23:12
We are developing a website for a charity trust in India. For this we need to add a "donate" button to the website for anyone who wants to donate to the charity through a payment gateway. However, both Paypal and Google Wallet / Google Checkout restrict the use of the "donate" button in India (Google, rather than a donate button, provide a "support" button). Are either of these payment gateways possible to integrate into a website in India? Or are there any other alternatives? Indian merchants cannot use Donation buttons through PayPal. If you tried to pass cmd=_donations in your button code

Payment Gateway for Java [closed]

北慕城南 提交于 2019-12-03 21:58:03
How to create Payment Gateway using java? Detailed Description for payment gateway in java (It will helpful for me). I want to integrate with my application. You don't want (and can't) implement a payment gateway. At least not by asking a question "how to create a payment gateway", and definitely not alone. What you are looking for, perhaps, is to be able to receive payments from customers. You can use an existing payment gateway: PayPal MoneyBookers Authorize.net WorldPay All of them have well-described APIs and web-services to communicate with - just pick one with the best financial options

Setting up Payum Bundle with Symfony2 giving error

本小妞迷上赌 提交于 2019-12-03 21:45:52
I am working with Symfony 2.6 and trying to setup PayumBundle (paypal express checkout) and I am getting an error InvalidConfigurationException in BaseNode.php line 313: Invalid configuration for path "payum.security.token_storage": The storage entry must be a valid model class. It is set Acme\featuresBundle\Entity\PaymentToken I am following the steps mentioned in there documetation This is how my config.yml looks like doctrine: orm: auto_generate_proxy_classes: "%kernel.debug%" entity_managers: default: auto_mapping: true mappings: payum: is_bundle: false type: xml dir: %kernel.root_dir%/..

How to implement CCAvenue payment gateway option [closed]

不羁岁月 提交于 2019-12-03 17:22:51
We need to implement CCAvenue payment gateway option. How can I do this using ASP.net/C#? Please check the Integration Manual in ccavenue offical site.I hope it will help you http://world.ccavenue.com/content/works_any_shoppingcart.jsp I have got it resolved. Yes CCAvenue provides good support. But the person who uses asp.net forum will always look for asp.net codes and direct answers. :) I hope this will help someone. I have created two properties in code behind. One is to return checksum value and another one is to return details about the checkout items. public string CCAvenueItemList { get

Payment API for Grails

不羁岁月 提交于 2019-12-03 17:07:24
问题 Are there any payment APIs for Grails? I'm looking for something that will abstract receiving of payments for my website. Primarily, I'm looking to hit Paypal and Google Checkout - as far as I know these are the most used online payment services. Support for any other services would be a bonus. 回答1: There's a PayPal plugin http://grails.org/Paypal+Plugin Not used it myself though... 回答2: It looks like aggregation of payment providers is not commonly done, and there are no Grails libraries for

magento payment process.. how it works in general

限于喜欢 提交于 2019-12-03 15:28:35
got a question and I hope this is right place to ask :).. don’t quite understand how payment works in magento. client goes to checkout and lets say wants to pay as a guest, so provides address etc. and finally gets to payment methods. Then I want clients to pay thru credit card. Already have module installed for gateway (bank?) of my choice. At that point I would expect users to be redirected to 3rd party page (bank hosted) where they giving all the details, only after being returned to my magento site with appropriate message. In magento however it seems like they need to provide cc numbers

Invoke PSP app with UPI url

时光毁灭记忆、已成空白 提交于 2019-12-03 15:05:31
I am trying to create a merchant app which will generate a url based on NPCI's guidelines. This url will be shared as intent and the PSP app (Any registered bank app) should be able to listen to that url and get invoked. I have formed a url like this:- upi://pay?pa=icici/name&pn=USER_NAME&tid=422d97c1-f0fc-4bea-b24a-511ffa85e86f&am=442.87&tn=Test%transaction Now I am sending the intent like this :- Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, UPI); sendIntent.setType("text/plain"); startActivity(sendIntent); Icici bank app