Skip to content

Chiamata api, response null #61

Closed Answered by valmoz
jehol75 asked this question in Q&A
Aug 23, 2022 · 2 comments · 30 replies
Discussion options

You must be logged in to vote

Riassumo per comodità.

L'errore null sulla C# SDK sembrerebbe essere legato ad un bug sulla libreria RestSharp, che si presenta in alcune versioni .NET.

Per risolvere è possibile aggiungere la seguente linea di codice prima di eseguire la chiamata verso le nostre API:

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11; 

discussione stackoverflow.

Per migliorare la gestione degli errori della nostra sdk è possibile aggiungere il seguente codice:

var apiInstance = new IssuedDocumentsApi(config);
apiInstance.ExceptionFactory = (methodName, response) =>
{
    var status = (int)response.StatusCode;
    if (status >= 400)
    {
        return new ApiE…

Replies: 2 comments 30 replies

Comment options

You must be logged in to vote
28 replies
@jehol75
Comment options

@valmoz
Comment options

@jehol75
Comment options

@emajo
Comment options

@valmoz
Comment options

Comment options

You must be logged in to vote
2 replies
@francescoffz
Comment options

@emajo
Comment options

emajo Mar 7, 2023
Maintainer

Answer selected by valmoz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants