条带重定向网址中的自定义参数

时间:2017-01-03 07:39:41

标签: php stripe-payments

如何在条带重定向网址中添加自定义参数。 我的代码是

$authorize_request_body = array(
      'response_type' => 'code',
      'scope' => 'read_write',
      'client_id' => $stripe_client_id,
      'entity_id' => $entity_id,
);
$url = AUTHORIZE_URI . '?' . http_build_query($authorize_request_body);
echo "<a href='$url' class='btn btn-primary'>Connect with Stripe</a>";

我想在重定向网址中动态获取'entity_id' 这可能吗?

0 个答案:

没有答案