From 173fa358b715dffe16fd96b801ef0b66e3fdce13 Mon Sep 17 00:00:00 2001 From: Frank Kessler Date: Thu, 29 Oct 2015 15:55:02 -0400 Subject: [PATCH] Add Google Oauth2 scopes for Doubleclick for Publishers (DFP) --- src/OAuth/OAuth2/Service/Google.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/OAuth/OAuth2/Service/Google.php b/src/OAuth/OAuth2/Service/Google.php index 894ac8a4..8fa556a0 100644 --- a/src/OAuth/OAuth2/Service/Google.php +++ b/src/OAuth/OAuth2/Service/Google.php @@ -52,6 +52,11 @@ class Google extends AbstractService const SCOPE_ADWORDS = 'https://www.googleapis.com/auth/adwords/'; const SCOPE_GAN = 'https://www.googleapis.com/auth/gan'; // google affiliate network...? + //Doubleclick for Publishers + const SCOPE_DFP = 'https://www.googleapis.com/auth/dfp'; + const SCOPE_DFP_TRAFFICKING = 'https://www.googleapis.com/auth/dfatrafficking'; + const SCOPE_DFP_REPORTING = 'https://www.googleapis.com/auth/dfareporting'; + // Google Analytics const SCOPE_ANALYTICS = 'https://www.googleapis.com/auth/analytics'; const SCOPE_ANALYTICS_EDIT = 'https://www.googleapis.com/auth/analytics.edit';