We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setSiftConfig
The Readme indicates that only the first two arguments, accountId and beaconKey, are required.
accountId
beaconKey
When running in my app, I am receiving native code errors indicating that all the parameters are indeed required.
npm install sift-react-native
cd ios && pod install && cd ..
// App.js import React from 'react'; import SiftReactNative from 'sift-react-native'; const accountId = SIFT_SCIENCE_ACCOUNT_ID const beaconKey = SIFT_SCIENCE_BEACON_KEY const ConfigurationScreen = () => { ... SiftReactNative.setSiftConfig( accountId, beaconKey ); ... return <View><Text>Hello Word</Text></View> } export default ConfigurationScreen;
The text was updated successfully, but these errors were encountered:
Same. Looking at the implementation, we can pass an empty string for serverUrlFormat, but all params are strictly required by the typings.
serverUrlFormat
Sorry, something went wrong.
Following up on this. The note in the README is unclear. Is it describing the endpoints in: https://sift.com/developers/docs/curl/device-fingerprinting-api/overview?
No branches or pull requests
The Readme indicates that only the first two arguments,
accountId
andbeaconKey
, are required.When running in my app, I am receiving native code errors indicating that all the parameters are indeed required.
Steps to reproduce:
The text was updated successfully, but these errors were encountered: