Milker90 / react-native-alipay

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-alipay

alipay sdk for react native

Installation

npm install react-native-alipay

Usage

支付宝App授权登录

import Alipay from "react-native-alipay";

// 本地rsa签名
const result = await Alipay.auth2({
  pid: "",
  appId: "",
  targetId: "",
  appScheme: "",
  signType: AlipaySignType.RSA2,
  rsa2PrivateKey: "",
});

// 服务器rsa签名
const result = await Alipay.auth2({
  signType: AlipaySignType.SERVER_RSA,
  serverSignedString: "服务器签名后拼接的字符串, eg: app_id=xxx&pid=xxx&sign_type=RSA2&sign=xxxx",
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

About

License:MIT License


Languages

Language:C 96.2%Language:Objective-C 2.3%Language:Kotlin 0.7%Language:Java 0.4%Language:TypeScript 0.2%Language:Ruby 0.1%Language:JavaScript 0.1%Language:Shell 0.0%Language:Swift 0.0%