Stripe和WordPress -验证身份文档模式

j8yoct9x  于 12个月前  发布在  WordPress
关注(0)|答案(1)|浏览(131)

我试图在WordPress安装中使用Stripe的verify-identity-documents和模式路由。我不确定在哪里可以放置下面的代码来创建验证会话?
这应该是它自己的插件吗?我已经下载并添加了带作为一个新的插件,但当我调用模态了什么也没有发生,我得到了一个404的fetch('/验证-会话'.
我试图按照这里的指示https://stripe.com/docs/identity/verify-identity-documents,但这需要放在一个WordPress的主题/设置。

use Stripe\Stripe;

require 'vendor/autoload.php';

// Set your secret key. Remember to switch to your live secret key in production.
// See your keys here: https://dashboard.stripe.com/apikeys
$stripe = new \Stripe\StripeClient('sk_test_51IUfiAKBpqLAYasy1QzBG7eKEFVnR1TxC9wwQZ48Eq1tHT5hRW11tA2OmH004vg8xt0i'

);

// In the route handler for /create-verification-session:
// Authenticate your user

// Create the session
$verification_session = $stripe->identity->verificationSessions->create
([
  'type
' => 'document',
  'metadata
' => [
    'user_id' => '{{USER_ID}}',
  ],
]);

// Return only the client secret to the frontend.
$client_secret = $verification_session->client_secret;

字符串

相关问题