Generate JSON Web Token
1
2
//Returns a successful JSON Web Token.
void successfulTransactionToken(TransactionToken transactionToken);
//Handle errors related to the card.
void handleCardProcessingResponse(CardProcessingResponse cardProcessingResponse);
//Handle errors related to the manual entry request.
void handleManualEntryError(String message);3
manualCardTokenizer = new ManualCardTokenizerImpl(this);4
manualCardTokenizer.createTransactionToken(manualEntry);Last updated
Was this helpful?

