Hi every one, I am trying to integrate stripe in my xamarin forms application. I have added the component and I have done some code for integrating this payment gateway to my application. I am generating token from user given card details but How to send this token to server for payment. What I have tried is
var stripView = new StripeView();
card = _stripView.Card;
card.CVC = "123";
card.Number = "4242 4242 4242 4242";
card.ExpiryYear = 20;
card.ExpiryMonth = 10;
var token = await StripeClient.CreateToken(card);
I am getting 'token' from this details but I don't know the root map What I have done next for continue the payment process. Please suggest any idea. Thanks in advance.