paypal api:立即付款,没有送货地址

时间:2015-03-09 20:40:24

标签: c# paypal paypal-rest-sdk

在这个上拔了几个小时......

我找不到通过paypal api获取immediate payment而无需指定送货地址的方法。我正在销售通过电子邮件发送的门票,不需要运送。

有信息指出你必须创建一个'网络体验资料'。然而,我无法找到如何将'WebProfile()'传递给付款和两个,这不是我想要做的,因为用户然后必须返回主机网站授权接受付款添加一个不必要的步骤我的结账。

我发现的一件事是,如果您指定送货地址,用户一旦获得PayPal就无法更改,他们必须返回主机网站更改地址。所以目前,我正在使用该公司的邮政地址,但这并不理想......

我只想在没有送货地址的情况下付款,返回我的网站并付款!

这甚至可能吗?!很确定它是付款快递吗?

获得奖励积分,如果有人也可以告诉我如何删除'你几乎已经完成了。您将在测试辅导员的测试商店确认您的付款。消息(因为我在用户返回我的网站时付款)这将是amazin;)

1 个答案:

答案 0 :(得分:14)

使用PayPal付款不需要填写送货地址。我建议您查看PayPal .NET SDK samples,其中包含Payment with PayPal示例,该示例在运行时会向您显示创建,授权和执行付款的流程。

关于网络体验资料,当您进行付款时,您可以选择使用之前创建的资料的ID设置experience_profile_id

以下是您要遵循以完成所有这些工作的步骤:

第1步:创建新的网络体验资料。此次调用返回的ID可以在每次PayPal付款时重复使用,因此您只需要执行一次。

var apiContext = new APIContext(); // APIContext with config info & credentials

// Create the web experience profile
var profile = new WebProfile
{
    name = "My web experience profile",
    presentation = new Presentation
    {
        brand_name = "My brand name",
        locale_code = "US",
        logo_image = "https://www.somesite.com/my_logo.png"
    },
    input_fields = new InputFields
    {
        no_shipping = 1
    }
};

var createdProfile = profile.Create(apiContext);

第2步:创建付款。

// Create the payment
var payment = new Payment
{
    intent = "sale",
    experience_profile_id = createdProfile.id,
    payer = new Payer
    {
        payment_method = "paypal"
    },
    transactions = new List<Transaction>
    {
        new Transaction
        {
            description = "Ticket information.",
            item_list = new ItemList
            {
                items = new List<Item>
                {
                    new Item
                    {
                        name = "Concert ticket",
                        currency = "USD",
                        price = "20.00",
                        quantity = "2",
                        sku = "ticket_sku"
                    }
                }
            },
            amount = new Amount
            {
                currency = "USD",
                total = "45.00",
                details = new Details
                {
                    tax = "5.00",
                    subtotal = "40.00"
                }
            }
        }
    },
    redirect_urls = new RedirectUrls
    {
        return_url = "http://www.somesite.com/order.aspx?return=true",
        cancel_url = "http://www.somesite.com/order.aspx?cancel=true"
    }
};

var createdPayment = payment.Create(apiContext);

第3步:使用创建的付款中包含的approval_url HATEOAS链接将买方重定向到PayPal。

// Redirect buyer to PayPal to approve the payment...
var approvalUrl = createdPayment.GetApprovalUrl();

第4步:买家批准付款并重定向回您的网站后,执行付款。

var payerId = Request.Params["PayerID"];
var paymentId = Request.Params["paymentId"];
var paymentToExecute = new Payment { id = paymentId };
var executedPayment = paymentToExecute.Execute(apiContext, new PaymentExecution { payer_id = payerId });