File indexing completed on 2025-01-19 03:55:39
0001 // 0002 // Created by michaelpollind on 3/13/17. 0003 // 0004 0005 #include "o2google.h" 0006 0007 static const char *GftEndpoint = "https://accounts.google.com/o/oauth2/auth"; 0008 static const char *GftTokenUrl = "https://accounts.google.com/o/oauth2/token"; 0009 static const char *GftRefreshUrl = "https://accounts.google.com/o/oauth2/token"; 0010 0011 O2Google::O2Google(QObject *parent) : O2(parent){ 0012 setRequestUrl(GftEndpoint); 0013 setTokenUrl(GftTokenUrl); 0014 setRefreshTokenUrl(GftRefreshUrl); 0015 } 0016 #include "moc_o2google.cpp"