google adwords reportjob
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 405
Google::Adwords::ReportJob 0.6.0
Google::Adwords::ReportJob is a Google Adwords ReportJob Object. more>>
Google::Adwords::ReportJob is a Google Adwords ReportJob Object.
This object is used with the ReportService module
METHODS
Mutators (read/write)
- adGroups
- adGroupStatuses
- adWordsType
- aggregationType
- campaigns
- clientEmails
- crossClient
- customOptions
- endDay
- id
- includeZeroImpression
- keywords
- keywordStatuses
- keywordType
- name
- startDay
- status
<<lessThis object is used with the ReportService module
METHODS
Mutators (read/write)
- adGroups
- adGroupStatuses
- adWordsType
- aggregationType
- campaigns
- clientEmails
- crossClient
- customOptions
- endDay
- id
- includeZeroImpression
- keywords
- keywordStatuses
- keywordType
- name
- startDay
- status
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::ReportService 0.6.0
Google::Adwords::ReportService is a Perl module to interact with the Google Adwords ReportService API calls. more>>
Google::Adwords::ReportService is a Perl module to interact with the Google Adwords ReportService API calls.
SYNOPSIS
use Google::Adwords::ReportService;
# create the report service object
my $report_service = Google::Adwords::ReportService->new();
# need to login to the Adwords service
$report_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token)
;
# delete a report
my $report_job_id = 123456;
$report_service->deleteReport($report_job_id);
# get all the jobs
my @jobs = $report_service->getAllJobs();
# get status for report job
my $status = $report_service->getReportJobStatus($report_job_id);
# get gzip url for download
my $gzip_url = $report_service->getGzipReportDownloadUrl($report_job_id);
# get url for download
my $url = $report_service->getReportDownloadUrl($report_job_id);
# schedule a report
my $job = Google::Adwords::ReportJob->new
->startDay(2006-08-01)
->endDay(2006-08-01)
->name(Test report via API)
->aggregationType(Daily)
->adWordsType(SearchOnly);
my $jobid = $report_service->scheduleReportJob(AccountReportJob, $job);
<<lessSYNOPSIS
use Google::Adwords::ReportService;
# create the report service object
my $report_service = Google::Adwords::ReportService->new();
# need to login to the Adwords service
$report_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token)
;
# delete a report
my $report_job_id = 123456;
$report_service->deleteReport($report_job_id);
# get all the jobs
my @jobs = $report_service->getAllJobs();
# get status for report job
my $status = $report_service->getReportJobStatus($report_job_id);
# get gzip url for download
my $gzip_url = $report_service->getGzipReportDownloadUrl($report_job_id);
# get url for download
my $url = $report_service->getReportDownloadUrl($report_job_id);
# schedule a report
my $job = Google::Adwords::ReportJob->new
->startDay(2006-08-01)
->endDay(2006-08-01)
->name(Test report via API)
->aggregationType(Daily)
->adWordsType(SearchOnly);
my $jobid = $report_service->scheduleReportJob(AccountReportJob, $job);
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords 1.3.1
Google::Adwords is a collection of Perl modules that provides an easy-to-use object oriented interface to the Google Adwords API more>> <<less
Download (0.057MB)
Added: 2007-07-11 License: Perl Artistic License Price:
837 downloads
Google::Adwords::StatsRecord 0.6.0
Google::Adwords::StatsRecord is a Google Adwords StatsRecord Object. more>>
Google::Adwords::StatsRecord is a Google Adwords StatsRecord Object.
This object is a read-only object used in returned calls from Google Adwords API.
More info is available here -
http://www.google.com/apis/adwords/developer/StatsRecord.html
METHODS
Accessors (read only)
* averagePosition - The average position of impressions that were shown for this records entity
* clicks - The number of clicks collected by this records entity.
* conversionRate - The ratio of conversions over convertible clicks for this records entity.
* conversions - The number of clicks that were actually converted for this records entity.
* cost - The total cost incurred (in micro-units of currency) by this records entity.
* id - The Id of this records entity
* impressions - The number of impressions shown on behalf of this records entity
<<lessThis object is a read-only object used in returned calls from Google Adwords API.
More info is available here -
http://www.google.com/apis/adwords/developer/StatsRecord.html
METHODS
Accessors (read only)
* averagePosition - The average position of impressions that were shown for this records entity
* clicks - The number of clicks collected by this records entity.
* conversionRate - The ratio of conversions over convertible clicks for this records entity.
* conversions - The number of clicks that were actually converted for this records entity.
* cost - The total cost incurred (in micro-units of currency) by this records entity.
* id - The Id of this records entity
* impressions - The number of impressions shown on behalf of this records entity
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Creative 0.6.0
Google::Adwords::Creative is a Google Adwords Creative object. more>>
Google::Adwords::Creative is a Google Adwords Creative object.
SYNOPSIS
use Google::Adwords::CreativeService;
use Google::Adwords::Creative;
# create the CreativeService object
my $creative_service = Google::Adwords::CreativeService->new();
# need to login to the Adwords service
$creative_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token);
# if you have a MCC
$creative_service->clientEmail($client_email);
# get a specific creative from an AdGroup
my $adgroupid = 1123
my $creativeid = 7819;
my $creative = $creative_service->getCreative($adgroupid, $creativeid);
print "Creative Info: n"
. " ID: " . $creative->id . "n"
. " Dest URL: " . $creative->destinationUrl . "n"
. " Display URL: " . $creative->displayUrl . "n"
;
This object should be used with the CreativeService API calls
<<lessSYNOPSIS
use Google::Adwords::CreativeService;
use Google::Adwords::Creative;
# create the CreativeService object
my $creative_service = Google::Adwords::CreativeService->new();
# need to login to the Adwords service
$creative_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token);
# if you have a MCC
$creative_service->clientEmail($client_email);
# get a specific creative from an AdGroup
my $adgroupid = 1123
my $creativeid = 7819;
my $creative = $creative_service->getCreative($adgroupid, $creativeid);
print "Creative Info: n"
. " ID: " . $creative->id . "n"
. " Dest URL: " . $creative->destinationUrl . "n"
. " Display URL: " . $creative->displayUrl . "n"
;
This object should be used with the CreativeService API calls
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::CreditCard 0.6.0
Google::Adwords::CreditCard is a Google Adwords CreditCard object. more>>
Google::Adwords::CreditCard is a Google Adwords CreditCard object.
This object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
<<lessThis object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google Gears Beta
Google Gears project is an open source Firefox extension that enables web applications to provide offline functionality. more>>
Google Gears project is an open source Firefox extension that enables web applications to provide offline functionality using following JavaScript APIs:
- Store and serve application resources locally
- Store data locally in a fully-searchable relational database
- Run asynchronous Javascript to improve application responsiveness
<<less- Store and serve application resources locally
- Store data locally in a fully-searchable relational database
- Run asynchronous Javascript to improve application responsiveness
Download (0.42MB)
Added: 2007-06-01 License: Freeware Price:
1030 downloads
Google::Adwords::AccountInfo 0.6.0
Google::Adwords::AccountInfo is a Google Adwords AccountInfo object. more>>
Google::Adwords::AccountInfo is a Google Adwords AccountInfo object.
SYNOPSIS
use Google::Adwords::AccountInfo;
my $accountinfo = Google::Adwords::AccountInfo->new
->currencyCode(EUR)
->descriptiveName(My Account);
This object should be used with the AccountService API calls
<<lessSYNOPSIS
use Google::Adwords::AccountInfo;
my $accountinfo = Google::Adwords::AccountInfo->new
->currencyCode(EUR)
->descriptiveName(My Account);
This object should be used with the AccountService API calls
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Data 0.6.0
Google::Adwords::Data is base class for the Data modules. more>>
Google::Adwords::Data is base class for the Data modules.
This module is not supposed to be used directly. Use the child data modules.
<<lessThis module is not supposed to be used directly. Use the child data modules.
Download (0.041MB)
Added: 2006-11-28 License: Perl Artistic License Price:
1060 downloads
Google::Adwords::Address 0.6.0
Google::Adwords::Address is a Google Adwords Address object. more>>
Google::Adwords::Address is a Google Adwords Address object.
SYNOPSIS
use Google::Adwords::Address;
my $address = Google::Adwords::Address->new
->addressLine1(first street)
->city(Paris)
->companyName(My company)
->countryCode(FR)
->emailAddress(my@example.com);
This object should be used with the AccountService API calls
METHODS
Mutators (read/write)
- addressLine1
- addressLine2
- city
- companyName
- countryCode
- emailAddress
- faxNumber
- name
- phoneNumber
- postalCode
- state
<<lessSYNOPSIS
use Google::Adwords::Address;
my $address = Google::Adwords::Address->new
->addressLine1(first street)
->city(Paris)
->companyName(My company)
->countryCode(FR)
->emailAddress(my@example.com);
This object should be used with the AccountService API calls
METHODS
Mutators (read/write)
- addressLine1
- addressLine2
- city
- companyName
- countryCode
- emailAddress
- faxNumber
- name
- phoneNumber
- postalCode
- state
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1067 downloads
Google::Adwords::KeywordRequest 0.6.0
Google::Adwords::KeywordRequest is a Google Adwords KeywordRequest Object. more>>
Google::Adwords::KeywordRequest is a Google Adwords KeywordRequest Object.
This object is a read/write object used in calls from Google Adwords API.
More info is available here -
http://www.google.com/apis/adwords/developer/KeywordRequest.html
METHODS
Mutators (read/write)
* id - The id of the keyword. Optional - if omitted indicates a new keyword.
* maxCpc - The bid (maximum cost per click) for this keyword in micros.
* negative - If set to 1, the keyword is used to filter out variations. Otherwise, acts as a source of variations.
* text - The text of the source keyword.
* type - The type of the source keyword, which determines how variations are generated : Broad, Phrase or Exact.
<<lessThis object is a read/write object used in calls from Google Adwords API.
More info is available here -
http://www.google.com/apis/adwords/developer/KeywordRequest.html
METHODS
Mutators (read/write)
* id - The id of the keyword. Optional - if omitted indicates a new keyword.
* maxCpc - The bid (maximum cost per click) for this keyword in micros.
* negative - If set to 1, the keyword is used to filter out variations. Otherwise, acts as a source of variations.
* text - The text of the source keyword.
* type - The type of the source keyword, which determines how variations are generated : Broad, Phrase or Exact.
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1067 downloads
Google::Adwords::CoverageType 0.6.0
Google::Adwords::CoverageType is a Google Adwords CoverageType object. more>>
Google::Adwords::CoverageType is a Google Adwords CoverageType object.
SYNOPSIS
use Google::Adwords::CoverageType;
my $coveragetype = Google::Adwords::CoverageType->new
->optInContentNetwork(1)
->optInSearchNetwork(0);
This object should be used with the AccountService API calls
<<lessSYNOPSIS
use Google::Adwords::CoverageType;
my $coveragetype = Google::Adwords::CoverageType->new
->optInContentNetwork(1)
->optInSearchNetwork(0);
This object should be used with the AccountService API calls
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Service 0.6.0
Google::Adwords::Service is base class for the Service modules. more>>
Google::Adwords::Service is base class for the Service modules.
This module is not supposed to be used directly. Use the child Service modules.
METHODS
These accessors are available across all the child Service modules
new()
Creates a new Google::Adwords::Service object
Usage
my $service = Google::Adwords::CampaignService->new();
Parameters
NONE
Returns
A Google::Adwords::Service object
email()
Set/Get your Google Adwords account name (your email address). This value should be set before calling any other API methods
password()
Set/Get your Google Adwords account password. This value should be set before calling any other API methods
token()
Set/Get your Google Adwords developer token. This value should be set before calling any other API methods
clientEmail()
Use this if you have a MCC (My Client Center) account. Set/Get the actual client email which will be used for the API calls.
useragent()
Set this to an arbitrary string that identifies the customer sending the request. Default value is "Google::Adwords $VERSION"
use_sandbox()
If you do $obj->use_sandbox(1), then this module will use the sandbox for all API calls.
timeout()
Set the SOAP timeout value in seconds. Default value is 20.
debug()
Use $obj->debug(1) if you want to see the request/response XML
The following accessors are available after an API call is done. These give information about the response.
requestId()
Get the unique ID that identifies this request.
operations()
number of operations in the request
units()
number of quota units the request used
responseTime()
elapsed time between the web service receiving the request and sending the response
<<lessThis module is not supposed to be used directly. Use the child Service modules.
METHODS
These accessors are available across all the child Service modules
new()
Creates a new Google::Adwords::Service object
Usage
my $service = Google::Adwords::CampaignService->new();
Parameters
NONE
Returns
A Google::Adwords::Service object
email()
Set/Get your Google Adwords account name (your email address). This value should be set before calling any other API methods
password()
Set/Get your Google Adwords account password. This value should be set before calling any other API methods
token()
Set/Get your Google Adwords developer token. This value should be set before calling any other API methods
clientEmail()
Use this if you have a MCC (My Client Center) account. Set/Get the actual client email which will be used for the API calls.
useragent()
Set this to an arbitrary string that identifies the customer sending the request. Default value is "Google::Adwords $VERSION"
use_sandbox()
If you do $obj->use_sandbox(1), then this module will use the sandbox for all API calls.
timeout()
Set the SOAP timeout value in seconds. Default value is 20.
debug()
Use $obj->debug(1) if you want to see the request/response XML
The following accessors are available after an API call is done. These give information about the response.
requestId()
Get the unique ID that identifies this request.
operations()
number of operations in the request
units()
number of quota units the request used
responseTime()
elapsed time between the web service receiving the request and sending the response
Download (0.041MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::KeywordEstimate 0.6.0
Google::Adwords::KeywordEstimate is a Google Adwords KeywordEstimate Object. more>>
Google::Adwords::KeywordEstimate is a Google Adwords KeywordEstimate Object.
METHODS
Accessors (read-only)
* id - The existing keyword id, if any, to which this estimate corresponds. For a new keyword, the id is -1.
* lowerAvgPosition - The estimated lower position for ads triggered by this keyword.
* lowerClicksPerDay - The estimated minimum number of clicks per day for this keyword.
* lowerCpc - The estimated minimum cost per clicks for this keyword.
* upperAvgPosition - The estimated upper position for ads triggered by this keyword.
* upperClicksPerDay - The estimated upper number of clicks per day for this keyword.
* upperCpc - The estimated upper cost per click for this keyword.
<<lessMETHODS
Accessors (read-only)
* id - The existing keyword id, if any, to which this estimate corresponds. For a new keyword, the id is -1.
* lowerAvgPosition - The estimated lower position for ads triggered by this keyword.
* lowerClicksPerDay - The estimated minimum number of clicks per day for this keyword.
* lowerCpc - The estimated minimum cost per clicks for this keyword.
* upperAvgPosition - The estimated upper position for ads triggered by this keyword.
* upperClicksPerDay - The estimated upper number of clicks per day for this keyword.
* upperCpc - The estimated upper cost per click for this keyword.
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Image 0.6.0
Google::Adwords::Image is a Google Adwords Image object. more>>
Google::Adwords::Image is a Google Adwords Image object.
SYNOPSIS
use Google::Adwords::CreativeService;
use Google::Adwords::Creative;
use Google::Adwords::Image;
use File::Slurp;
# create the CreativeService object
my $creative_service = Google::Adwords::CreativeService->new();
# need to login to the Adwords service
$creative_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token);
# if you have a MCC
$creative_service->clientEmail($client_email);
# Lets add an image creative
my $data_blurb = read_file(image.gif);
my $image = Google::Adwords::Image->new
->name(Image #1)
->data($data_blurb)
->type(image);
my $creative_image = Google::Adwords::Creative->new
->adGroupId($adgroupid)
->destinationUrl(http://www.example.com)
->displayUrl(http://www.example.com)
->image( $image );
my $addcreative = $creative_service->addCreative($creative_image);
print "Added Creative ID: " . $addcreative->id . "n";
print "Image Height: " . $addcreative->image->height . "n";
This object should be used with the CreativeService API calls
<<lessSYNOPSIS
use Google::Adwords::CreativeService;
use Google::Adwords::Creative;
use Google::Adwords::Image;
use File::Slurp;
# create the CreativeService object
my $creative_service = Google::Adwords::CreativeService->new();
# need to login to the Adwords service
$creative_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token);
# if you have a MCC
$creative_service->clientEmail($client_email);
# Lets add an image creative
my $data_blurb = read_file(image.gif);
my $image = Google::Adwords::Image->new
->name(Image #1)
->data($data_blurb)
->type(image);
my $creative_image = Google::Adwords::Creative->new
->adGroupId($adgroupid)
->destinationUrl(http://www.example.com)
->displayUrl(http://www.example.com)
->image( $image );
my $addcreative = $creative_service->addCreative($creative_image);
print "Added Creative ID: " . $addcreative->id . "n";
print "Image Height: " . $addcreative->image->height . "n";
This object should be used with the CreativeService API calls
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above google adwords reportjob search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed