Welcome to our new developer portal! Use the "Ask" button to chat with our AI Agent.
For the complete documentation index, see llms.txt. This page is also available as Markdown.

バインディングを同期

使用する バインディング状態を同期する( を照合するために デバイスバインディング Thales SDK と Thales バックエンド間の状態。

SDK の状態が古いと疑われるときにこれを呼び出します。ネットワークエラー、アプリの再インストール、または中断されたデバイスバインディングの後に発生する可能性があります。

SDK統合

を呼び出します バインディング状態を同期する( そして、成功またはエラーのコールバックで結果を処理します。

visaCTFHelper.syncBindingState(correlationId, 
                               vProvisionTokenId, 
                               new SyncBindingStateListener() {
            @Override
            public void onError(TMGClientException exception) { 
                // エラーを処理する
            }

            @Override
            public void onSuccess(BindingState bindingState) {
                // 次のフローを選択するために bindingState を使用します。
            }
        });

SDK は現在のバインディング状態を onSuccessに、またはエラーを onError.

次のステップ

返された BindingState を使用して適切なフローを続行します:

最終更新

役に立ちましたか?