GithubHelp home page GithubHelp logo

chathuranga1992 / react-native-reliantid-authorize-net Goto Github PK

View Code? Open in Web Editor NEW

This project forked from reliantid/react-native-reliantid-authorize-net

0.0 0.0 0.0 621 KB

React Native binding for Authorize.Net AcceptSDK for Objective-C projects that don't support use_frameworks!

JavaScript 0.03% Ruby 0.13% Objective-C 3.52% Java 96.33%

react-native-reliantid-authorize-net's Introduction

React Native Authorize.net bindings

Purpose

react-native-reliantid-authorize-net allows you to:

  • Fetch token by sending card detail to AcceptSDK for iOS and Android. You need to use this token to get the values of DATA DESCRIPTOR and DATA VALUE from the token.

Getting started

$ yarn add react-native-reliantid-authorize-net

Installation

RN60+

Create react-native.config.js (if not already present) in the root folder of your project and disable autolinking for this package

// NOTE: guide to solving autolinking issues on iOS: https://github.com/facebook/react-native/issues/26665#issuecomment-571082076
module.exports = {
  project: {
    ios: {},
    android: {},
  },
  // list of dependencies that does not support autolinking
  dependencies: {
    // Disable autolinking per platform with 'null'
    'react-native-reliantid-authorize-net': {
      platforms: {
        android: null,
        ios: null,
      },
    },
  },
}

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-reliantid-authorize-net-acceptsdk and add RNAuthorizeNet.xcodeproj
  3. Go to node_modulesreact-native-reliantid-authorize-net-acceptsdk and add RNAuthorizeNetPods.xcodeproj
  4. In XCode, in the project navigator, select your project. Add libRNAuthorizeNet.a to your project's Build PhasesLink Binary With Libraries
  5. Run your project

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.authorizenet.RNAuthorizeNetPackage; to the imports at the top of the file
  • Add new RNAuthorizeNetPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-reliantid-authorize-net'
    project(':react-native-reliantid-authorize-net').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-reliantid-authorize-net/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      implementation project(':react-native-reliantid-authorize-net')
    

Usage

import RNAuthorizeNet from 'react-native-reliantid-authorize-net';

Keys used in parameter[cardValues] and the purpose of the keys:

Required keys:

LOGIN_ID : "login_id of authorize.net in which the card will be added."
CLIENT_KEY : "client_key of authorize.net in which the card will be added."
CARD_NO : "card no"
EXPIRATION_MONTH : "expiration month of the card."
EXPIRATION_YEAR : "expiration year of the card."
CVV_NO : "cvv no of the card."

Keys used in response [responseObject] and the purpose of the keys: This will be used to add card on server using accept.js of auhorize.net

Response Object Keys:

DATA_DESCRIPTOR = "card data descriptor"
DATA_VALUE = "card data value"

RNAuthorizeNet API Documentation

Method Method Description Parameters Parameters Description
getTokenWithRequestForCard This method is used to get response object {with data value and data descriptor} and success {bool value to show if the card added successfully} for your credit card, you want to add to authorize.net. cardValues, isProduction cardValues: the card detail object, which can hold the values with keys as described above. isProduction: this indicate if the processing is done for production mode

Contributor

react-native-reliantid-authorize-net's People

Contributors

chathuranga1992 avatar peter-mach avatar brentkaji avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.