令牌需要信用卡授权吗?

时间:2019-07-08 14:02:33

标签: php wordpress woocommerce payment-gateway

我很难理解令牌概念

  • 对于要生成的令牌,我们不必发送发送请求(其中包含信用卡详细信息吗?)来授权信用卡
  • 在woocommerce信用卡中,有一个代码基本上删除了表单中的名称,并带有注释,说明启用了标记化后,是否不需要过帐?

    /** * Output field name HTML * * Gateways which support tokenization do not require names - we don't want the data to post to the server. * * @since 2.6.0 * @param string $name Field name. * @return string */

    public function field_name( $name ) { return $this->supports( 'tokenization' ) ? '' : ' name="' . esc_attr( $this->id . '-' . $name ) . '" '; }

0 个答案:

没有答案
相关问题