Hi Guys.
Well, i need cef to be always logged in google but every time i close the application and open again is logged off.
How to save this login without needing to stay logging on every time?
PS.: I'm using in delphi
Thank you.
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
Save login google
- salvadordf
- Posts: 4620
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Save login google
Hi,
Try setting a directory for the cache and cookies adding this before GlobalCEFApp.StartMainProcess
Try setting a directory for the cache and cookies adding this before GlobalCEFApp.StartMainProcess
Code: Select all
GlobalCEFApp.Cache := 'cache'; // use a writable directory
GlobalCEFApp.Cookies := 'cookies'; // use a writable directory
Re: Save login google
Ow thanks, worked perfectly.
Save my life
Save my life
