payment

Google Play In-app billing V3 - Error - Authentication is Required

大憨熊 提交于 2019-12-12 03:18:55
问题 I have looked at other similar questions on SO regarding the same issue and all point to the same point. To check the ID of the product. I am implementing in-app purchases for the first time and i think i am using the correct product id in the code. I am following TrivialDrive sample. So, the error is as follows: My product id from Google Play: My code is as follows: package com.xx.xxx; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity;

Using Flattr as Paywall

扶醉桌前 提交于 2019-12-12 02:47:55
问题 this is a touchy subject with Flattr but I couldn't find a definite answer yet [1] Is it allowed to use Flattr for a paywall-like flow? My idea is to give users access to a download for a Flattr. They have access to the stream before, so they know what they'll get. Form the flow i think it would look like this: User comes to deep link of stream on platform -> clicks connect to flattr -> returns to platform and clicks on [flattr for download] -> thing is flattred in the background and download

What should I use as a starting point each month for counting how much of my resources the user consumes?

爷,独闯天下 提交于 2019-12-12 02:02:42
问题 Say, I use stripe subscriptions for my users with one plan which is $10 per month for 100 API requests and that's the standard price. However, if the user has used 150 API requests, I charge them $3 more on top on $10. For 200 and more requests it's total of $17. Say, I've subscribed the user on October 9th. On November 9th they will be charged again by Stripe. When should I "freeze" the amount of the APIs the user has used during the month to calculate the overall price and start counting

Square Connect with node/angular

南楼画角 提交于 2019-12-11 19:13:38
问题 I am trying to integrate the Square Online payments into my web app. Here is the error I am getting: Uncaught FormNotReadyError: Cannot call SqPaymentForm#requestCardNonce before SqPaymentForm is ready. I have not been able to really find anything with integrating Square online payments into Angular, and I am still fairly new to angular/node. Thanks payment.html <div id="form-container"> <div id="sq-ccbox"> <form id="nonce-form" novalidate action="process-payment" method="post"> <fieldset>

Realex payment, response cant be Handled .Net

微笑、不失礼 提交于 2019-12-11 17:02:10
问题 i trying to implement a hpp full redirect to realex payment, i have 2 controllers one that send the request to the realex payment server and the second to which the response is sent back. i get the response in json as such {"RESULT":"00","AUTHCODE":"12345","MESSAGE":"[ test system ] AUTHORISED","PASREF":"15441812060166886","AVSPOSTCODERESULT":"M","AVSADDRESSRESULT":"M","CVNRESULT":"M","ACCOUNT":"internet","MERCHANT_ID":"MyID","ORDER_ID":"UYCRWpJtlE-B1n62SE7EKg","TIMESTAMP":"20181207111253",

PHP Stripe get the transaction id after successful purchase

限于喜欢 提交于 2019-12-11 12:57:03
问题 I'm trying to get the transaction ID after the purchase, but it returns empty on thankyou page order.php <?php \Stripe\Stripe::setApiKey('<test token>'); $amount = 100; $card = $_POST['stripeToken']; // Create a Customer $customer = \Stripe\Customer::create(array( "source" => $card, "email" => $email, "description" => "Example description") ); // Charge the Customer instead of the card $charge = \Stripe\Charge::create(array( "amount" => 100, "currency" => "usd", "customer" => $customer->id) )

How to set up facebook callback url?

那年仲夏 提交于 2019-12-11 08:25:23
问题 How do I setup a Canvas payments callback url? I only need to set up for static pricing at this time within my app. Facebook requires a Payments Object under "Realtime Updates" heading. I have been searching everywhere for a simple straight example on how to do the complete process but have not been able to find one. I have been working through the Unity3d Friendsmash example project. 回答1: I haven't found much information on the callback, but since I don't really use it, I just used this code

Facebook Local Currency Payment error

久未见 提交于 2019-12-11 06:13:42
问题 While implementing local currency payment i encounter the following error : Sorry, but we're having trouble processing your payment. You have not been charged for this transaction. Please try again. and after click the close button, i notice the callback return the following error: Object {error_code: 1383003, error_message: "Account id missing. sender: 160028640868641 receiver: 0"} Below is the js code: FB.ui({ method: 'pay', action: 'purchaseitem', product: productlink, request_id:

Siri : IntentHandler not behaving correctly with device Touch ID

给你一囗甜甜゛ 提交于 2019-12-11 05:18:14
问题 What is the right approach to handle device LocalAuthentication with NSIntent ? Currently it is not showing payment sent pop up in Siri INSendPaymentIntent . - (void)handleSendPayment:(INSendPaymentIntent *)intent completion:(void (^)(INSendPaymentIntentResponse *response))completion { __block INSendPaymentIntentResponse *siriResponse; LAContext *context = [[LAContext alloc] init]; NSError *error = nil; // Check if device supports TouchID if ([context canEvaluatePolicy