Qt WebKit Enabling Cookies
-
wrote on 6 Sept 2019, 14:59 last edited by anshah 9 Jun 2019, 15:00
By default are cookies enabled or disabled on Qt WebKit's QWebView?
I've seen on multiple forums to create a cookie jar and add it to the NetworkAccessManager like so:
QNetworkAccessManager *myNam = new QNetworkAccessManager(); myNam->setCookieJar(new QNetworkCookieJar()); webView->setNetworkAccessManager(myNam);
Does the QNetworkAccessManager take care of adding to and removing from the cookie jar or do I need to manage that? Is this all there is to it if we just want to enable cookies and not do anything fancy?
1/1