Zendesk - ожидаемый тип аутентификации - ноль - PullRequest
0 голосов
/ 25 февраля 2020

Я получаю ошибку от zendesk, когда собирался создать заявку в android.

The expected type of authentication is null. Check that settings have been downloaded.
    The local identity is present.
    The local identity is anonymous.

Вот коды, которые я пробовал.

        // Show friendly ProgressDialog with indeterminate progress spinner, non-cancelable.
        progressDialog = ProgressDialog.show(this, "Sending Request", "Aligning 1s and 0s...", true, false);

        // Get an instance of the RequestProvider from the ZendeskConfig
        RequestProvider provider = Support.INSTANCE.provider().requestProvider();

        // Build your CreateRequest object, which includes the custom field data
        CreateRequest request = buildCreateRequest();

        // Optionally, create a ZendeskCallback. This can be null.
        ZendeskCallback<Request> callback = buildCallback();

        // Call the provider method
        provider.createRequest(request, callback);

Пожалуйста Помоги мне. спасибо

...