How to process shipping charges and VAT using Google Checkout? - asp.net

I need to implement google checkout using asp.net c#, I was able to get items in my shopping cart populated in google checkout, but was unable to proceed with shipping charges and VAT and what to do after that, i.e., track orders and redirecting to my site so I could add customer's orders. kindly provide me with complete implementation sample if possible i will be very grateful to you.

Google provides sample code, which should effectively provide an integration sample:
.Net Sample Code
and
Google Checkout XML API Developer's Guide

For .NET integration issues I also recommend the Checkout Developer forums:
http://www.google.com/support/forum/p/checkout-merchants/label?lid=254e6cb63ecd682f&hl=en

Related

Sending custom URL in e-mail after Stripe payment

I want to use Stripe payments in the website where the key task is to send e-mail with custom generated URL to the customer after the payment.
The website runs on Wordpress and from my first research there is several ways how to implement it: payment link / WooCommerce / one of WP plugins. So far I am open for all of them, however I am not sure which one could be the best for the intended task mentioned above.
I have zero experience with Stripe, so I would be grateful for some advice on how to accomplish that task. Thanks.
PaymentLink, or Stripe Checkout is similar products, but they create link for making payment. You mentioned you want a link after the payment, which sounds like a receipt? If that is the case, take a look at their receipt guide.
Both WooCommerce and Easy Digital Downloads implement this, so I recommend using them alongside Stripe.
Here's a screenshot of a WooCommerce purchase receipt. The download link is shown in red. WooCommerce generates a unique download link when a customer purchases a downloadable item.

Application ID for PayPal integration with Woocommerce

I am working with Wordpress and Woocommerce in a local environment. It is required the app id in order to make the API calls. In Sandbox mode I am using APP-80W284485P519543T, this is mentioned here: https://developer.paypal.com/docs/archive/adaptive-payments/. To go Live I have created an app on Paypal and I tried to reach https://docs/api/goingLive/ (as it was written in the guide). I can't reach this page and I am not able to find the application id. How can I solve this issue?
Thank you very much for your kind help.
Adaptive Payments was deprecated in December of 2017. No APP IDs are available.
Switch to a plugin that uses a supported integration method, such as PayPal Checkout / Smart Payment Buttons.

Show the credit/debit card page directly on paypal

I'm working on an e-commerce site which runs on WordPress platform. Woocommerce plugin is used to create the products and using PayPal standard payment gateway.
Whenever I check out the product, the PayPal is showing the "Paypal login page" but I wanted to show "Pay with credit/debit" by default.
I tried setting this '' to the checkout button in my site. I doesn't work.
I know "Express checkout" is used to show the "Paypal credit/debit" card page directly. But in my products, I have maintained the recurring payment option. "Express Checkout" doesn't provide the recurring payment option.
May I know where I'm going wrong.
Note: I'm using latest versions of woocommerce and wordpress.
I believe since you are using PayPal standard, you may need to utilize another form of integrating recurring payments for your respective products. Looks like PayPal does endorse a specific extension to WooCommerce that can handle recurring payments, link HERE.
Also, here's the actual link to the extension which is mentioned on the previous page, HERE.
According to REST API documentation, on v2/checkout/orders you may set the application_context.landing_page to BILLING.
Unfortunately, I can't see any difference on user experience behaviour.

Payment Options From Shopping Cart

I am using ASP.NET with my code behind in C# and I am working on setting up a shopping cart to allow payment online using Paypal This is great! Well now I need an option from my shopping cart to allow the option of "Pay In Store." Following the tutorial Webforms And Paypaland things are great, except I do not see anyway to allow check-out w/o Paypal info being entered for payment.
Is their a way in ASP.Net and C# to give the user the option to EITHER pay with paypal OR pay in store?
EDIT:
Is their an e-commerce asp.net program that will allow me to use integrate both the paypal fast checkout as well as a pay-in-store option?

What fields are needed for Google Checkout?

What are the fields to be taken for Google Checkout? Can anybody show me Google Checkout form both in user and admin side?
There are various ways of achieving a checkout form, so you'll need to read up on which method will be best for you. Start by reading these explanations by Google which also show you examples of how to achieve them:
http://checkout.google.com/support/sell/bin/answer.py?hl=en-uk&answer=38882
You tagged the question with asp.net, so you may also want to have a look at the Checkout client libraries for .NET and Classic ASP for more info:
http://code.google.com/apis/checkout/samplecode.html

Resources