我如何仅使用HTML CSS和JAVASCRIPT将Square Payment Gateway嵌入网站中?没有框架&&没有其他语言
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何仅使用HTML CSS和JAVASCRIPT将Square Payment Gateway嵌入网站中?没有框架&&没有其他语言相关的知识,希望对你有一定的参考价值。
Square在node.js中提供其代码。但是问题是,我想将其嵌入DUDA网站构建器中。而且我在那里不能使用任何框架。只是html,CSS,javascript,jQuery硬编码。没有php,没有Python。这是github链接:https://github.com/square/sqpaymentform-nodejs-starterkit
我试图重新更正node.js代码,并将其仅转换为JavaScript硬编码。但是失败了。这是github链接:https://github.com/square/sqpaymentform-nodejs-starterkit
const express = require('express');
const bodyParser = require('body-parser');
const crypto = require('crypto');
const squareConnect = require('square-connect');
const app = express();
const port = 3000;
const accessToken = '';
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(__dirname));
const defaultClient = squareConnect.ApiClient.instance;
const oauth2 = defaultClient.authentications['oauth2'];
oauth2.accessToken = accessToken;
.......so more
以上代码来自node.js应用程序的server.js。我只需要js。这是github链接:https://github.com/square/sqpaymentform-nodejs-starterkit
答案
希望对您有所帮助
~~~-〜-~~~~-
https://resources.duda.co/square-in-the-store
以上是关于我如何仅使用HTML CSS和JAVASCRIPT将Square Payment Gateway嵌入网站中?没有框架&&没有其他语言的主要内容,如果未能解决你的问题,请参考以下文章
仅使用 HTML、CSS 和 Javascript 进行视频编辑 [关闭]