`react-native-authorize-dot-net` is a package that 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.
npm install react-native-authorize-dot-netreact-native-authorize-net is a package that allows you to: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.$ npm install react-native-authorize-net --save
$ react-native link react-native-authorize-net
#### iOS
1. In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name]
2. Go to node_modules ➜ react-native-authorize-net and add RNAuthorizeNet.xcodeproj
3. In XCode, in the project navigator, select your project. Add libRNAuthorizeNet.a to your project's Build Phases ➜ Link Binary With Libraries
4. Run your project (Cmd+R)<
#### Android
1. Open up android/app/src/main/java/[...]/MainActivity.java
- Add import com.reactlibrary.RNAuthorizeNetPackage; to the imports at the top of the file
- Add new RNAuthorizeNetPackage() to the list returned by the getPackages() method
2. Append the following lines to android/settings.gradle:
```
include ':react-native-authorize-net'
project(':react-native-authorize-net').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-authorize-net/android')
android/app/build.gradle
3. Insert the following lines inside the dependencies block in :`
`
compile project(':react-native-authorize-net')
import RNAuthorizeNet from 'react-native-authorize-net';
#### 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."
#### Optional keys:
ZIP_CODE : "zip code of billing address"
ACCOUNT_HOLDER_NAME : "card holder name"
ACCOUNT_HOLDER_EMAIL : "card holder email"
#### Response Object Keys:
DATA_DESCRIPTOR = "card data descriptor"
DATA_VALUE = "card data value"
| 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 |
* Tushar S