0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

クレジットカード決済用JavaScript準備 11 環境設定4

Posted at

Tokenとは

PAYJPが発行します。
何のためにPAYJP側は必要なのか?これはクレジットカード会社はカード利用者のカード情報を持てないので別にトークンを発行してこのトークンを利用してカード利用者のカード情報等を検索して利用金額請求を行う。

Tokenは以下のjsのファイルが実行された時点(createToken)で発行される

card.js
      Payjp.createToken(card, (status, response) => {
        if (status == 200) {
          const token = response.id;
          const renderDom = document.getElementById("charge-form");
          const tokenObj = `<input value=${token} name='token' type="hidden"> `;
          renderDom.insertAdjacentHTML("beforeend", tokenObj);
        }

SECRET_KEYとPUBLIC_KEYについて

こちらは商品販売するサイトがクレジット決済代行サービスと取引を行う際の身分証明書となろもの。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?