We are using paymentConnector.vaultCard(cardEntryMethods.ALL)
Then we are swiping the Test Card when asked. The response has token as not set/null.
onVaultCardResponse VaultCardResponse{json='{"success":true,"result":"SUCCESS","reason":null,"message":null,"card":{"first6":"601136","last4":"6668","cardholderName":"DEVKIT DISCOVER TESTCARD","expirationDate":"1225"}}', bundle=null, changeLog=Bundle[{success=null, reason=null, result=null, card=null, message=null}]}
@Override public void onVaultCardResponse(final VaultCardResponse response) { VaultedCard vc = response.getCard(); Log.e(TAG, "Token from vault card : " + vc.getToken()); }
Output of above is:
Token from vault card : null
Are we missing any setting?