Code Monkey home page Code Monkey logo

Comments (3)

SimoDax avatar SimoDax commented on September 27, 2024

Ciao, assicurati di abilitare la gestione dei cookie, le richieste devono condividerli proprio come un browser. Altrimenti se la seconda richiesta non invia i cookie sessione della prima sicuramente non funzionerà

from trenitalia-api.

giubri91 avatar giubri91 commented on September 27, 2024

Grazie mille per il suggerimento dei cookie, ho risolto il problema. Per chi ne avesse bisogno, ecco la soluzione che ho trovato, scritta in C#:

prima richiesta, lista soluziooni:
qui imposto anche i cookie

            Uri site = new Uri(url); //url di ricerca 
            CookieContainer cookieContainer = new CookieContainer();
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(site);
            request.CookieContainer = cookieContainer;//imposto i cookie
            request.AutomaticDecompression = DecompressionMethods.GZip;

            using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
            {
                using (Stream stream = response.GetResponseStream())
                using (StreamReader reader = new StreamReader(stream))
                {
                    json = reader.ReadToEnd();
                }
            }
            var result = JsonConvert.DeserializeObject<List<soluzioniPercorsoDeserialize>>(json);

seconda richiesta di dettagli di una determinata soluzione:
dove utilizzo i cookie della prima chiamata

                    Uri site2= new Uri(solutionCurrentUrl);//url contentente l'id soluzione di cui vogliamo avere i dettagli
                    HttpWebRequest request2 = (HttpWebRequest)WebRequest.Create(site2);
                    request2.CookieContainer = cookieContainer; //imposto i cookie uguali a quelli della prima chiamata
                    request2.AutomaticDecompression = DecompressionMethods.GZip;

                    using (HttpWebResponse response = (HttpWebResponse)request2.GetResponse())
                    {
                        using (Stream stream = response.GetResponseStream())
                        using (StreamReader reader = new StreamReader(stream))
                        {

                            jsonSolution = reader.ReadToEnd();
                        }
                    }
                    var dettagliSol = JsonConvert.DeserializeObject<List<dettagliSoluzioneDeserialize>>(jsonSolution);

from trenitalia-api.

SimoDax avatar SimoDax commented on September 27, 2024

Ottimo, io esplicito meglio sulla wiki la questione sessione e cookie

from trenitalia-api.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.