第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

盡管附加了付款詳細(xì)信息,但條帶付款不完整?

盡管附加了付款詳細(xì)信息,但條帶付款不完整?

Go
繁華開滿天機(jī) 2022-10-17 10:01:30
使用測(cè)試數(shù)據(jù),我可以創(chuàng)建一個(gè)客戶并附加一種付款方式,但我的所有訂閱都處于這種狀態(tài)。這是我目前創(chuàng)建訂閱的代碼:// StripeCreateSubscription create a new subscription with fixed price for userfunc StripeCreateSubscription(w http.ResponseWriter, r *http.Request) {    if r.Method != "POST" {        SendResponse(w, utils.MakeError("you can only POST to the stripe create customer route"), http.StatusMethodNotAllowed)        return    }    // Decode the JSON payload    type requestPayload struct {        PaymentMethodID string `json:"paymentMethodId"`        PriceID         string `json:"priceId"`    }    var payload requestPayload    if err := json.NewDecoder(r.Body).Decode(&payload); err != nil {        sendSystemError(w, fmt.Errorf("decode request payload: %v", err))        return    }    // Get the user from the context of who made the request    uid := r.Context().Value("user_id").(int)    u := models.User{}    if err := u.FindByID(uid); err != nil {        sendSystemError(w, fmt.Errorf("find user by id: %v", err))        return    }    if u.StripeCustomerID == "" {        sendSystemError(w, errors.New("no customer for the user"))        return    }    // Attach the payment method to the customer    paymentParams := &stripe.PaymentMethodAttachParams{        Customer: stripe.String(u.StripeCustomerID),    }    pm, err := paymentmethod.Attach(        payload.PaymentMethodID,        paymentParams,    )    if err != nil {        sendSystemError(w, fmt.Errorf("attaching payment method failed: %v", err))    }    // Check if the user has any active subscriptions, and cancel the others if they're adding one.    listParams := &stripe.SubscriptionListParams{        Customer: u.StripeCustomerID,        Status:   "all",    }我需要做什么才能讓我的訂閱完成付款?
查看完整描述

1 回答

?
縹緲止盈

TA貢獻(xiàn)2041條經(jīng)驗(yàn) 獲得超4個(gè)贊

使用固定價(jià)格訂閱指南default_incomplete顯示在創(chuàng)建訂閱時(shí)明確保持初始發(fā)票未被嘗試。要完成設(shè)置,您需要使用來自應(yīng)用程序客戶端的客戶端密碼通過支付元素(或卡元素)確認(rèn)支付。你好像已經(jīng)在寄回了,你在用嗎?client_secret



查看完整回答
反對(duì) 回復(fù) 2022-10-17
  • 1 回答
  • 0 關(guān)注
  • 75 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)