admin管理员组

文章数量:1124165

I am new to Twilio and to Stripe, and I am having issues with the setting up the Twilio to Stripe payment connector. Stripe returns "Connector configuration error. Credentials missing."

I have created the pay connector in Twilio Dashboard > Voice > Manage > Pay connectors and went through the Connect to Stripe process.

In debugging, my call gets forwarded to Stripe. It takes the CC# and all the relevant information, then posts back to my action but the results give an error message of "Connector configuration error. Credentials missing."

The help documentation says to recreate my payment connector configuration, which I have tried. I also saw something about having to provide my Stripe keys in Twilio, but I don't see where that option is.

In my code I am using the VoiceResponse Pay function like:

var response = new VoiceResponse();

response.Say("Connecting to Stripe");

response.Pay(paymentConnector: "Default", action: , chargeAmount: "123.45");

return Content(response.ToString(), "application/xml");

Any help would be appreciated.

本文标签: Twilio to Stripe Payment Connectormissing credentialsStack Overflow