mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-06 00:05:02 -05:00
11 lines
413 B
C++
11 lines
413 B
C++
#include "o2gft.h"
|
|
|
|
static const char *GftScope = "https://www.googleapis.com/auth/fusiontables";
|
|
static const char *GftEndpoint = "https://accounts.google.com/o/oauth2/auth";
|
|
static const char *GftTokenUrl = "https://accounts.google.com/o/oauth2/token";
|
|
static const char *GftRefreshUrl = "https://accounts.google.com/o/oauth2/token";
|
|
|
|
O2Gft::O2Gft(QObject *parent): O2Google(parent) {
|
|
setScope(GftScope);
|
|
}
|