mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-05 00:06:38 -05:00
15 lines
462 B
C++
15 lines
462 B
C++
//
|
|
// Created by michaelpollind on 3/13/17.
|
|
//
|
|
|
|
#include "o2google.h"
|
|
|
|
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";
|
|
|
|
O2Google::O2Google(QObject *parent) : O2(parent){
|
|
setRequestUrl(GftEndpoint);
|
|
setTokenUrl(GftTokenUrl);
|
|
setRefreshTokenUrl(GftRefreshUrl);
|
|
} |