google-checkout

What happens to an “input” on “submit”? And how can that be done by ASP.Net? [duplicate]

二次信任 提交于 2019-12-11 18:57:34
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Read Post Data submitted to ASP.Net Form I have a google checkout "buy now" button, and am trying to add dynamically created content to send when it's clicked. Using the original html is proving a bit difficult so I want to create an ASP.Net ImageButton Instead of that. I've succeeded in creating the button with the right image, and hooking it up to an event handler in the codebehind. However, I'm not sure what

How can I customize the appearance of Google Checkout?

强颜欢笑 提交于 2019-12-11 11:50:00
问题 I opened a merchant account with google checkout and would like to customize the html/css. I have googled and searched around, but could not find anything. It seems that its not possible at all. The merchant account doesn't show any options either. But, I found the following page, which uses a custom header: https://checkout.google.com/view/buy?o=shoppingcart&shoppingcart=966330776082367 It seems that this page is using a custom skin, which is hosted on the google servers, however as said

Google Wallet Subscriptions Error 500

三世轮回 提交于 2019-12-11 04:31:21
问题 i have implemented the Subscriptions flow using the java library jsontoken, but am getting an error 500. happen in the sandox and production. any idea why it is? this is the error : POST https://checkout.google.com/inapp/api/v1/purchase_options 500 (Internal Server Error) this is the code: Calendar cal = Calendar.getInstance(); HmacSHA256Signer signer = new HmacSHA256Signer(ISSUER, null, SIGNING_KEY.getBytes()); JsonToken token = new JsonToken(signer); token.setAudience("Google"); token

Does canceling a user subscription through merchant console/API refunds him money?

扶醉桌前 提交于 2019-12-11 01:17:48
问题 According to In-App billing documentation, if users cancel's subscription by himself, his only way to receive a refund is by contacting a seller directly. But what happens if owner of the application cancels subscription through merchant account or through API call? Will user get a refund in this case? It looks like he will, but Google payment processing is not sure about this. When I cancel a user's subscription he receives email that explicitly states that " No refunds will be issued ". But

How can I create an http response from scratch?

别来无恙 提交于 2019-12-10 21:06:50
问题 I have code that returns an http response, but it also includes the content of the page. How can I create a response from scratch so it won't include anything except what I put in it? My code now: GCheckout.AutoGen.NotificationAcknowledgment response = new GCheckout.AutoGen.NotificationAcknowledgment(); response.serialnumber = serialNumber; HttpContext.Current.Response.Clear(); HttpContext.Current.Response.BinaryWrite(GCheckout.Util.EncodeHelper.Serialize(response)); HttpContext.Current

How can I integrate Paypal to payout users when a button is clicked?

天涯浪子 提交于 2019-12-09 01:21:35
问题 It might sound a little odd but I am in the final phases of finishing up my app that would pay users. There is an activity in the app where as and when the users use the app, money keeps accruing. I have a button in that activity called Cash Out which when the user reaches a certain amount can be clicked and is supposed to let the users take the money accrued from the app. I have contacted Google Checkout and Paypal so far and Paypal suggested personal payments can be integrated in my case

Google Checkout HTTP Post with ASP.net

拈花ヽ惹草 提交于 2019-12-08 09:18:05
问题 I have 2 pages I created in ASP.net(C#). The first one(called shoppingcart.asp) has a buy it now button. The second one(called processpay.asp) just waits for google checkout to send an HTTP request to it to process the payment. What I would like to do send a post statement to google checkout with a couple of variables that I want passed back to processpay.asp(ie clientid=3&itemid=10), but I don't know how to format the POST HTTP statement or what settings I have to change in google checkout

API-level difference between Google Checkout and Android Market documented?

↘锁芯ラ 提交于 2019-12-07 05:56:34
问题 PREAMBLE: this question is wildly obsolete. There's no more Google Checkout and no more API. Android Market uses Google Checkout for paid app sales. Google Checkout has a fairly extensive API. The behavior of Android Market accounts is markedly different from that documented for vanilla Google Checkout. Some examples: URL callbacks upon sales don't work Some XML API methods are not supported - e. g. <archive-order> In XML notifications, undocumented elements - e. g. <agent-private-data> under

Getting Started With ASP.NET MVC3 & Google Checkout: Take 2

浪子不回头ぞ 提交于 2019-12-06 13:08:36
This is a follow-up to: https://stackoverflow.com/questions/6285578/getting-started-with-asp-net-mvc3-google-checkout Now I finally started to know what's going on with the Google Checkout API. I decided to do everything on the server side. So I wrote some code but I could not make a successful call to the API. Here's my code: var str = string.Format("{0}:{1}", MERCHANT_ID, MERCHANT_KEY); var auth = EncodeTo64(str); var request = WebRequest.Create("https://sandbox.google.com/checkout/api/checkout/v2/requestForm/Merchant/747839340759259"); ((HttpWebRequest) request).Accept = "application/xml

Google Checkout in ASP.Net MVC

你说的曾经没有我的故事 提交于 2019-12-05 23:13:51
问题 I have a fairly simple ASP.Net site that uses google checkout (I have an imagebutton with the PostBackUrl set to the Google address passing values of hidden fields) which works fine. I've been moving this app to MVC and I'm not sure how to handle this. I thought about using jQuery form but I don't believe this would work in this situation because there are times when they're redirected to the google pages. Has anyone used google checkout in an asp.net MVC app? 回答1: You can do the same thing