-2

我正在使用 Paypal SDK for Go 创建计划,但出现错误:

Request: GET https://api.sandbox.paypal.com/v1/payments/billing-plans?page=1&page_size=5&status=ACTIVE&total_required=no. Data: 
Response: HTTP/1.1 204 No Content
Cache-Control: max-age=0, no-cache, no-store, must-revalidate
Date: Mon, 01 Mar 2021 14:51:21 GMT
Paypal-Debug-Id: 5ff2ab4feb8b9


(0x133dee0,0xc0001000e0)Request: POST https://api.sandbox.paypal.com/v1/billing/plans. Data: 
Response: HTTP/1.1 404 Not Found
Content-Length: 329
Cache-Control: max-age=0, no-cache, no-store, must-revalidate
Content-Type: application/json
Date: Mon, 01 Mar 2021 14:51:21 GMT
Paypal-Debug-Id: 85f6b9f24b80f

{"name":"RESOURCE_NOT_FOUND","message":"The specified resource does not exist.","debug_id":"85f6b9f24b80f","details":[{"issue":"INVALID_RESOURCE_ID","description":"Invalid product id"}],"links":[{"href":"https://developer.paypal.com/docs/api/v1/billing/subscriptions#RESOURCE_NOT_FOUND","rel":"information_link","method":"GET"}]}

我正在使用的代码是:

package main

import (
    "context"
    "os"

    "github.com/plutov/paypal/v4"
)

func main() {
    c, err := paypal.NewClient(
        "",
        "",
        paypal.APIBaseSandBox)

    if err != nil {
        print(err)
    }

    c.SetLog(os.Stdout) // Set log to terminal stdout
    //print(c)

    accessToken, err := c.GetAccessToken(context.Background())
    print(accessToken)
    print("\n=======================================\n")

    listParams := paypal.ListParams{
        Page:          "1",
        PageSize:      "5",
        TotalRequired: "no",
    }

    billingPlan := paypal.BillingPlanListParams{
        ListParams: listParams,
        Status:     "ACTIVE",
    }
    _, er := c.ListBillingPlans(context.Background(), billingPlan)
    if er != nil {
        print(er)
    }
    price := paypal.Money{
        Currency: "USD",
        Value:    "10",
    }
    scheme := paypal.PricingScheme{
        FixedPrice: price,
    }
    frequency := paypal.Frequency{
        IntervalUnit:  paypal.IntervalUnitMonth,
        IntervalCount: 1,
    }
    
    newPlan := paypal.SubscriptionPlan{
        ID:          "PayPal12949",
        ProductId:   "AX12339",
        Name:        "BEGINNERS_PLAN",
        Status:      paypal.SubscriptionPlanStatusActive,
        Description: "This plan is for beginners",
        BillingCycles: []paypal.BillingCycle{
            {
                PricingScheme: scheme,
                Frequency:     frequency,
                TenureType:    paypal.TenureTypeRegular,
                Sequence:      1,
                TotalCycles:   3,
            },
        },
        PaymentPreferences: &paypal.PaymentPreferences{
            AutoBillOutstanding: false,
            SetupFee: &paypal.Money{
                Currency: "USD",
                Value:    "5",
            },
        },
    }
    c.CreateSubscriptionPlan(context.Background(), newPlan)
    
}
4

1 回答 1

1

该 SDK 与当前版本的PayPal 订阅不兼容。

PayPal 订阅不支持 SDK;使用直接 API 调用

(如果你真的想要,你也可以尝试调整 SDK 函数来实现当前的订阅 API)

于 2021-03-01T18:38:30.483 回答