SP server guide (JAVA)
This is the SP SDK(Java) Server Application guide document.
SP API guide document
Unlock KeyManager
String keyManagerFile = "key.wallet";
String keyManagerPass = "keywalletPassword";
IWKeyManager keyManager = new IWKeyManager(keyManagerFile, keyManagerPass);
keyManager.unLock(keyManagerPass, new OnUnLockListener() {
@Override
public void onSuccess() {
System.out.println("KeyManager Unlock onSuccess");
}
@Override
public void onFail(int errCode) {
System.out.println("KeyManager Unlock onFail:" + errCode);
}
@Override
public void onCancel() {
System.out.println("KeyManager Unlock onCancel");
}
});Read DID document
BlockChain node settings
Agent Server settings
Send Callback confirmation URL to mobile app
VC verification API
SP profile
VC Verification
Last updated
Was this helpful?