- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在开发一个应用程序,我想通过它出售一些事件门票。
我可以为此目的使用 PayPal 吗?Apple 是否会批准使用其他 StoreKit 框架的应用程序。
我搜索了这个主题,但找不到任何可能的解决方案。
一些搜索说可以使用 paypal,另一些搜索说 Apple 从不批准使用 inAppPurchase 以外的支付网关的应用。
请帮帮我!
最佳答案
是的,您可以在您的应用程序中使用 PayPal 支付网关。您可以从以下链接查看完整的文档:
在您的 .h 文件中添加以下代码
#import "PayPal.h"
#import "PayPalList.h"
typedef enum PaymentStatuses
{
PAYMENTSTATUS_SUCCESS,
PAYMENTSTATUS_FAILED,
PAYMENTSTATUS_CANCELED,
} PaymentStatus;
实现这个委托(delegate)方法“PayPalPaymentDelegate”
PayPalList *payPalList;
PaymentStatus status;
在您的 .m 文件中添加以下代码
#import "PayPalPayment.h"
#import "PayPalAdvancedPayment.h"
#import "PayPalAmounts.h"
#import "PayPalReceiverAmounts.h"
#import "PayPalAddress.h"
#import "PayPalInvoiceItem.h"
#define SPACING 3.
- (void)ButtonWithType:(PayPalButtonType)type withAction:(SEL)action
{
UIButton *btnPayWithPayPal = [[PayPal getInstance] getPayButtonWithTarget:self andAction:action andButtonType:type];
CGRect frame;
frame.origin.x = 60;
frame.origin.y = 315;
frame.size.width = 304;
frame.size.height = 40;
btnPayWithPayPal.frame = frame;
[self.view addSubview:btnPayWithPayPal];
}
- (void)viewDidLoad
{
[self ButtonWithType:BUTTON_194x37 withAction:@selector(simplePayment)];
}
#pragma mark -
#pragma mark PayPalPaymentDelegate methods
- (void)paymentSuccessWithKey:(NSString *)payKey andStatus:(PayPalPaymentStatus)paymentStatus
{
status = PAYMENTSTATUS_SUCCESS;
}
- (void)paymentFailedWithCorrelationID:(NSString *)correlationID andErrorCode:(NSString *)errorCode andErrorMessage:(NSString *)errorMessage
{
status = PAYMENTSTATUS_FAILED;
}
- (void)paymentCanceled
{
status = PAYMENTSTATUS_CANCELED;
}
- (void)paymentLibraryExit
{
UIAlertView *alert = nil;
switch (status) {
case PAYMENTSTATUS_SUCCESS:
break;
case PAYMENTSTATUS_FAILED:
alert = [[UIAlertView alloc] initWithTitle:@"Order failed"
message:@"Your order failed. Touch \"Pay with PayPal\" to try again."
delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
break;
case PAYMENTSTATUS_CANCELED:
alert = [[UIAlertView alloc] initWithTitle:@"Order canceled"
message:@"You canceled your order. Touch \"Pay with PayPal\" to try again."
delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
break;
}
[alert show];
[alert release];
}
- (PayPalAmounts *)adjustAmountsForAddress:(PayPalAddress const *)inAddress andCurrency:(NSString const *)inCurrency andAmount:(NSDecimalNumber const *)inAmount
andTax:(NSDecimalNumber const *)inTax andShipping:(NSDecimalNumber const *)inShipping andErrorCode:(PayPalAmountErrorCode *)outErrorCode
{
//do any logic here that would adjust the amount based on the shipping address
PayPalAmounts *newAmounts = [[[PayPalAmounts alloc] init] autorelease];
newAmounts.currency = @"USD";
newAmounts.payment_amount = (NSDecimalNumber *)inAmount;
//change tax based on the address
/*if ([inAddress.state isEqualToString:@"CA"]) {
newAmounts.tax = [NSDecimalNumber decimalNumberWithString:[NSString stringWithFormat:@"%.2f",[inAmount floatValue] * .1]];
} else {
newAmounts.tax = [NSDecimalNumber decimalNumberWithString:[NSString stringWithFormat:@"%.2f",[inAmount floatValue] * .08]];
}
newAmounts.shipping = (NSDecimalNumber *)inShipping;*/
//if you need to notify the library of an error condition, do one of the following
//outErrorCode = AMOUNT_ERROR_SERVER;
//outErrorCode = AMOUNT_ERROR_OTHER;
return newAmounts;
}
#pragma mark -
#pragma mark Actions triggered by Pay with PayPal buttons
- (void)simplePayment
{
//optional, set shippingEnabled to TRUE if you want to display shipping
//options to the user, default: TRUE
[PayPal getInstance].shippingEnabled = TRUE;
//optional, set dynamicAmountUpdateEnabled to TRUE if you want to compute
//shipping and tax based on the user's address choice, default: FALSE
[PayPal getInstance].dynamicAmountUpdateEnabled = TRUE;
//optional, choose who pays the fee, default: FEEPAYER_EACHRECEIVER
[PayPal getInstance].feePayer = FEEPAYER_EACHRECEIVER;
//for a payment with a single recipient, use a PayPalPayment object
PayPalPayment *payment = [[[PayPalPayment alloc] init] autorelease];
payment.recipient = [NSString stringWithFormat:@"%@",payPalList.strRecipientPayPalId];
payment.paymentCurrency = [NSString stringWithFormat:@"%@",e_commerceAppDelegate.strProductCurrency];
payment.merchantName = [NSString stringWithFormat:@"%@",payPalList.strPayPalMerchantName];
payment.ipnUrl = [NSString stringWithFormat:@"%@",payPalList.strIpnUrl];
//subtotal of all items, without tax and shipping
payment.subTotal = [NSDecimalNumber decimalNumberWithString:stringsubtotal];
//invoiceData is a PayPalInvoiceData object which contains tax, shipping, and a list of PayPalInvoiceItem objects
payment.invoiceData = [[[PayPalInvoiceData alloc] init] autorelease];
//invoiceItems is a list of PayPalInvoiceItem objects
//NOTE: sum of totalPrice for all items must equal payment.subTotal
//NOTE: example only shows a single item, but you can have more than one
payment.invoiceData.invoiceItems = [NSMutableArray array];
PayPalInvoiceItem *item = [[[PayPalInvoiceItem alloc] init] autorelease];
item.totalPrice = payment.subTotal;
//int i=0;
for(i=0 ; i<[e_commerceAppDelegate.cartList count] ; i++)
{
cart = (Cart*)[e_commerceAppDelegate.cartList objectAtIndex:i];
item.name = cart.proName;
item.itemCount = [NSNumber numberWithInteger:cart.quantity];
NSString *itemSingPrice = [NSString stringWithFormat:@"%.2f",cart.price];
item.itemPrice = [NSDecimalNumber decimalNumberWithString:itemSingPrice];
NSString *itemSubTotal = [NSString stringWithFormat:@"%.2f",cart.quantity*cart.price];
item.totalPrice = [NSDecimalNumber decimalNumberWithString:itemSubTotal];
[payment.invoiceData.invoiceItems addObject:item];
item = [[[PayPalInvoiceItem alloc] init] autorelease];
}
NSScanner* scanner = [NSScanner localizedScannerWithString:e_commerceAppDelegate.strDeliveryCharges];
NSDecimal decimal;
[scanner scanDecimal:&decimal];
NSDecimalNumber *decimalNumber = [NSDecimalNumber decimalNumberWithDecimal:decimal];
payment.invoiceData.totalShipping = decimalNumber;
[[PayPal getInstance] checkoutWithPayment:payment];
}
您可以从以下链接了解 PayPal
https://www.x.com/community/ppx/xspaces/mobile/mep
https://www.x.com/docs/DOC-2532
https://cms.paypal.com/cms_content/US/en_US/files/developer/IPNGuide.pdf
https://www.x.com/thread/45094
https://www.x.com/message/193751#193751
http://googlecheckout.blogspot.com/2010/06/pay-on-go-with-android-payment.html
https://chrome.google.com/webstore/detail/omomllobcfbllglbhpmafongpckhdcdn
关于iphone - 我可以在 iPhone/iPad 应用程序中使用 PayPal 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6940985/
如果我的交易中的次要收款人没有 Paypal 帐户,会发生什么情况。他会收到要求他创建 Paypal 帐户的通知,还是 API 调用不会成功? 我几乎无法知道销售服务的用户在注册我的平台时是否有Pay
我们知道有这么多的支付网关服务提供商,即 Paypal ,moneybrookers,authorize.net以及许多国内和国际的支付网关提供商。现在,我的问题是,开发我们自己的支付网关服务以处理世
我们正在寻求替代我们对 Authorize.net 的使用。我花了很多时间查看 PayPal 文档,但找不到我的问题的明确答案: 使用 thousand 数十种不同的 PayPal API 可以在我们
我实际上是在为客户工作。我已经在网站上成功实现了 paypal pro,并且一切正常,我相信我遵循了他们的流程和指南,使它按照他们的意思工作。 因此,我一直在阅读 this webpage将网站投入生
我有2件商品要出售。我的运输底价为7.50美元,每增加一个项目,则为2.00美元 我已经设置了高级代码 运费= $ 7.50 运费2 = $ 2.00 一切正常,除非在购物车中添加了其他商品后,购物车
我想在不使用购物车的情况下实现一个不太复杂的解决方案。 我在自己对这个问题的回答中详细说明了解决方案,但如果有人能提出更好的方法,我会很高兴。 谢谢 最佳答案 实际上我最近不得不这样做。毫无疑问,我的
我创建了一个带有默认支付网关的shopify 小商店,即paypal express checkout。 当客户点击 Paypal 结帐按钮时,他们被要求输入他们的信用卡号并输入电子邮件并选择密码以注
一段时间以来,我一直在运行一个网站,该网站通过向 Paypal 网站发送一个 notify_url 来记录 Paypal 交易,并监听该 notify_url。我的监听页面解析从 paypal 发送的
我在网络应用程序中使用 PayPal Subscribe 按钮。我想将订阅开始日期传递给 PayPal,这不会总是今天的日期。 通常情况下,如果没有有效订阅,PayPal 会创建一个从今天开始的订阅。
大家好,我遇到了“立即购买”paypal 按钮这个令人沮丧的问题。 我希望我的客户能够通过 paypal 使用借记卡/信用卡付款,而无需创建 paypal 帐户,同时我希望能够根据产品类型将不同的定价
我想实现 paypal 授权并自动获取付款。我用过 Paypal 标准账户。我已发送带有授权参数的付款请求。
我想在我的 Paypal 沙盒账户中测试批量支付。根据 paypal 文档,它描述了将资金转移到 paypal 帐户的步骤。但我想转账到我客户的银行账户。我该怎么做? 仅供引用:PayPal 文档内容
我正在尝试登录我的沙盒帐户(使用 chrome),但由于 paypal 的新变化我不能。 Paypal 现在要求我登录开发者网站。我愿意。 然后我转到应用程序->沙盒帐户,然后按“sanbox 站点”
我有一个支持 Paypal 付款的 opencart 系统。是否有允许用户(信用卡)付款而无需强制注册 Paypal 帐户的选项。到目前为止,我使用的是 paypal 标准模块。 最佳答案 使用 Pa
我可以使用 Paypal ID 和密码使用 Paypal 详细信息进行付款而无需重定向到 Paypal 网站吗?我想在不离开我的网站的情况下完成所有付款流程。谢谢 最佳答案 您可以使用 PayFlow
当我尝试 https://fpdbs.paypal.com/dynamicimageweb?cmd=_dynamicimage 时,图像损坏了. 这是返回的错误信息: “尝试为应用程序构建 prote
我想向我的客户付款,为此我收到了他们的电子邮件,我想验证电子邮件地址是否存在于 paypal 中! 我搜索并找到了我尝试过的支付身份 API,但它只提供了我的我的数据!这是 LINK那个 API。 我
当从用户的 PayPal 账户中扣款时,PayPal 服务器在一定时间内没有响应(超时)。我们决定假设钱确实已经被拿走了,所以我们会退款。但是,如果钱没有从用户账户中扣除会怎样? PayPal返回什么
我有一个网站可以定期(比如每周一次)从客户那里收到钱。我将我的客户详细信息存储在我的数据库中,我想从我的客户帐户中提取资金,而不是每次都提示他们进行身份验证。金额会因客户而异。我怎样才能用 pay p
我有一个表格,其中一个团队签下他们的球员,然后被运送到 Paypal 进行注册付款,然后当一切都完成后我会收到一个 IPN。我正在做一个类似的表格,发现自从我创建该表格以来,Paypal 发生了很大变
我是一名优秀的程序员,十分优秀!