Adding Python DFA Reporting API Samples.

Reviewed in https://codereview.appspot.com/26070044/.
This commit is contained in:
Joe Gregorio
2013-11-18 11:16:33 -05:00
parent 89d832ab3d
commit b79c737dfe
18 changed files with 963 additions and 0 deletions

View File

@@ -19,3 +19,6 @@ google_api_python_client.egg-info/*
dist/*
snapshot/*
MANIFEST
.project
.pydevproject
.settings/*

View File

@@ -0,0 +1,5 @@
A collection of command-line samples for the DFA Reporting REST API.
api: dfareporting
keywords: cmdline
author: Jonathon Imperiosi (jimper@google.com)

View File

@@ -0,0 +1,9 @@
{
"installed": {
"client_id": "[[INSERT CLIENT ID HERE]]",
"client_secret": "[[INSERT CLIENT SECRET HERE]]",
"redirect_uris": [],
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token"
}
}

View File

@@ -0,0 +1,67 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to create a report.
Tags: reports.insert
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to create a report for')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
try:
# Create a new report resource to insert
report = {
'name': 'Example Standard Report',
'type': 'STANDARD',
'criteria': {
'dateRange': {'relativeDateRange': 'YESTERDAY'},
'dimensions': [{'name': 'dfa:campaign'}],
'metricNames': ['dfa:clicks']
}
}
# Construct the request.
request = service.reports().insert(profileId=profile_id, body=report)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,59 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to delete a report.
Tags: reports.delete
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to delete a report for')
argparser.add_argument('report_id', type=int,
help='The ID of the report to delete')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Construct the request.
request = service.reports().delete(profileId=profile_id, reportId=report_id)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,58 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to download a file.
Tags: files.get
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('report_id', type=int,
help='The ID of the report to get a file for')
argparser.add_argument('file_id', type=int,
help='The ID of the file to get')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
report_id = flags.report_id
file_id = flags.file_id
try:
# Construct the request.
request = service.files().get_media(reportId=report_id, fileId=file_id)
# Execute request and print the file contents
print request.execute()
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,72 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get all dimension values for a dimension.
Tags: dimensionValues.query
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to get a report for')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
try:
# Create the dimension to query
dimension = {
'dimensionName': 'dfa:advertiser',
'startDate': '2013-01-01',
'endDate': '2013-12-31'
}
# Construct the request.
request = service.dimensionValues().query(profileId=profile_id,
body=dimension)
while request is not None:
# Execute request and print response.
response = request.execute()
pprint.pprint(response)
nextPageToken = response.get('nextPageToken')
if nextPageToken and nextPageToken != '0':
request = service.dimensionValues().query_next(request, response)
else:
request = None
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,65 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a list of all the files for a profile.
Tags: files.list
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to use')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
try:
# Construct a get request for the specified profile.
request = service.files().list(profileId=profile_id, maxResults=10)
while request is not None:
# Execute request and print response.
response = request.execute()
pprint.pprint(response)
nextPageToken = response.get('nextPageToken')
if nextPageToken:
request = service.files().list_next(request, response)
else:
request = None
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,69 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a list of all the files for a report.
Tags: reports.files.list
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to use')
argparser.add_argument('report_id', type=int,
help='The ID of the report to list files for')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Construct a get request for the specified report.
request = service.reports().files().list(profileId=profile_id,
reportId=report_id)
while request is not None:
# Execute request and print response.
response = request.execute()
pprint.pprint(response)
nextPageToken = response.get('nextPageToken')
if nextPageToken:
request = service.reports().files().list_next(request, response)
else:
request = None
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,65 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a list of all reports.
Tags: reports.list
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to list reports for')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
try:
# Construct the request.
request = service.reports().list(profileId=profile_id)
while request is not None:
# Execute request and print response.
response = request.execute()
pprint.pprint(response)
nextPageToken = response.get('nextPageToken')
if nextPageToken:
request = service.reports().list_next(request, response)
else:
request = None
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,48 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a list of all user profiles.
Tags: userProfiles.list
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__,
scope='https://www.googleapis.com/auth/dfareporting')
try:
# Construct the request.
request = service.userProfiles().list()
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,62 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get the compatible fields for a report.
Tags: reports.compatibleFields.query
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to use')
argparser.add_argument('report_id', type=int,
help='The ID of the report to get compatible fields for')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Retrieve the specified report resource
report = service.reports().get(profileId=profile_id,
reportId=report_id).execute()
# Execute request and print response.
request = service.reports().compatibleFields().query(profileId=profile_id,
body=report)
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,59 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a report.
Tags: reports.delete
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to get a report for')
argparser.add_argument('report_id', type=int,
help='The ID of the report to get')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Construct the request.
request = service.reports().get(profileId=profile_id, reportId=report_id)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,64 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a file for a report.
Tags: reports.files.get
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to use')
argparser.add_argument('report_id', type=int,
help='The ID of the report to get a file for')
argparser.add_argument('file_id', type=int,
help='The ID of the file to get')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
file_id = flags.file_id
try:
# Construct a get request for the specified report.
request = service.reports().files().get(fileId=file_id,
profileId=profile_id,
reportId=report_id)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,56 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to get a user profile.
Tags: userProfiles.get
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to get a report for')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
try:
# Construct the request.
request = service.userProfiles().get(profileId=profile_id)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,67 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to patch a standard report.
Tags: reports.patch
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to patch a report for')
argparser.add_argument('report_id', type=int,
help='The ID of the standard report to patch')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Create a report resource with the fields to patch
report = {
'criteria': {
'dateRange': {'relativeDateRange': 'YESTERDAY'}
}
}
# Construct the request.
request = service.reports().patch(profileId=profile_id, reportId=report_id,
body=report)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,59 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to run a report.
Tags: reports.run
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to use')
argparser.add_argument('report_id', type=int,
help='The ID of the report to run')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Construct a get request for the specified report.
request = service.reports().run(profileId=profile_id, reportId=report_id)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)

View File

@@ -0,0 +1,76 @@
#!/usr/bin/python
#
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This example illustrates how to update a report.
Tags: reports.update
"""
__author__ = ('jimper@google.com (Jonathon Imperiosi)')
import argparse
import pprint
import sys
from apiclient import sample_tools
from oauth2client import client
# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument('profile_id', type=int,
help='The ID of the profile to update a report for')
argparser.add_argument('report_id', type=int,
help='The ID of the report to update')
def main(argv):
# Authenticate and construct service.
service, flags = sample_tools.init(
argv, 'dfareporting', 'v1.3', __doc__, __file__, parents=[argparser],
scope='https://www.googleapis.com/auth/dfareporting')
profile_id = flags.profile_id
report_id = flags.report_id
try:
# Construct a get request for the specified report.
request = service.reports().get(profileId=profile_id, reportId=report_id)
# Execute request
response = request.execute()
# Create a report resource with the fields to update
report = {
'accountId': response['accountId'],
'id': response['id'],
'lastModifiedTime': response['lastModifiedTime'],
'name': 'Example Standard Report (Updated)',
'ownerProfileId': response['ownerProfileId'],
'type': response['type']
}
# Create the update request
request = service.reports().update(profileId=profile_id,
reportId=report_id, body=report)
# Execute request and print response.
pprint.pprint(request.execute())
except client.AccessTokenRefreshError:
print ('The credentials have been revoked or expired, please re-run the '
'application to re-authorize')
if __name__ == '__main__':
main(sys.argv)