我正在将Paypal付款与我的应用程序集成。因此,当使用存储的信用卡进行付款时,是否有任何方法可以在继续付款之前通过调用Paypal REST API使用cvv进行验证?
任何帮助都将不胜感激。
答案 0 :(得分:-2)
'use strict';
import React from 'react';
import ProjectList from './projectlist';
export default class Application extends React.Component {
constructor(props) {
super(props);
}
changeProject() {
}
render() {
return <div className="row">
<div className="col s3">
<ProjectList
onProjectChangeEvent={this.changeProject}/>
</div>
</div>;
}
}