Skip to content

Commit 5820c98

Browse files
author
Nicholas Chen
committed
adding support for v201605 of the DFP API
1 parent 23a38a3 commit 5820c98

File tree

209 files changed

+1245
-494
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+1245
-494
lines changed

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
4.0.0 -- 5/17/2016
2+
* Add support for DFP v201605.
3+
* Removed examples for DFP v201505.
4+
* Removed support for DFP v201502.
5+
* Improved proxy support.
6+
* BREAKING CHANGE: The googleads.common.LoadFromStorage function has been
7+
updated to accommodate the current proxy support. This will break users with
8+
a proxy configured. Check out the changes in our sample googleads.yaml file
9+
to see the new format.
10+
111
3.15.0 -- 4/11/2016
212
* Removed support for AdWords v201506.
313
* Resolved issues:

examples/dfp/v201505/activity_group_service/create_activity_groups.py renamed to examples/dfp/v201605/activity_group_service/create_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
def main(client, advertiser_company_id):
3939
# Initialize appropriate service.
4040
activity_group_service = client.GetService('ActivityGroupService',
41-
version='v201505')
41+
version='v201605')
4242

4343
# Create a short-term activity group.
4444
short_term_activity_group = {

examples/dfp/v201505/activity_group_service/get_active_activity_groups.py renamed to examples/dfp/v201605/activity_group_service/get_active_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
def main(client):
3434
# Initialize appropriate service.
3535
activity_group_service = client.GetService('ActivityGroupService',
36-
version='v201505')
36+
version='v201605')
3737

3838
# Create statement object to only select active activity groups.
3939
values = [{

examples/dfp/v201505/activity_group_service/get_all_activity_groups.py renamed to examples/dfp/v201605/activity_group_service/get_all_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
def main(client):
3434
# Initialize appropriate service.
3535
activity_group_service = client.GetService('ActivityGroupService',
36-
version='v201505')
36+
version='v201605')
3737

3838
# Create a filter statement.
3939
statement = dfp.FilterStatement()

examples/dfp/v201505/activity_group_service/update_activity_groups.py renamed to examples/dfp/v201605/activity_group_service/update_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
def main(client, activity_group_id, advertiser_company_id):
3838
# Initialize appropriate service.
3939
activity_group_service = client.GetService('ActivityGroupService',
40-
version='v201505')
40+
version='v201605')
4141

4242
# Create statement object to select a single activity groups by ID.
4343
values = [{

examples/dfp/v201505/activity_service/create_activities.py renamed to examples/dfp/v201605/activity_service/create_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
def main(client, activity_group_id):
3939
# Initialize appropriate service.
40-
activity_service = client.GetService('ActivityService', version='v201505')
40+
activity_service = client.GetService('ActivityService', version='v201605')
4141

4242
# Create a daily visits activity.
4343
daily_visits_activity = {

examples/dfp/v201505/activity_service/get_active_activities.py renamed to examples/dfp/v201605/activity_service/get_active_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
def main(client):
3434
# Initialize appropriate service.
35-
activity_service = client.GetService('ActivityService', version='v201505')
35+
activity_service = client.GetService('ActivityService', version='v201605')
3636

3737
# Create statement object to only select active activities.
3838
values = [{

examples/dfp/v201505/activity_service/get_all_activities.py renamed to examples/dfp/v201605/activity_service/get_all_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
def main(client):
3434
# Initialize appropriate service.
35-
activity_service = client.GetService('ActivityService', version='v201505')
35+
activity_service = client.GetService('ActivityService', version='v201605')
3636

3737
# Create statement object to select only all activities.
3838
statement = dfp.FilterStatement()

0 commit comments

Comments
 (0)