Question

How would I write a function to wait for POST to complete? I am logging into a website that has multiple redirects and using connect() with QNetworkReply() leads to infinite GET requests.

I'm using a wait timer right now:

test->sendPostRequest(url, loginData);

    QEventLoop loop;
    QTimer::singleShot(8000, &loop, SLOT(quit()));
    loop.exec();


   test->sendGetRequest(request);
Was it helpful?

Solution

You can use a local event loop using QEventLoop and connecting the signal finished of your QNetworkAccessManager to the quit slot of QEventLoop. This way when the post is finished, the local event loop quits and the rest gets executed :

QNetworkAccessManager *networkManager = new QNetworkAccessManager(this);

networkManager->post(QNetworkRequest(serviceUrl), postData);


QEventLoop loop;
loop.connect(networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); 
loop.exec();

//...

I should not that it's the standard pattern for "blocking wait without blocking the UI".

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top