Main > Free Download Search >

Free google adwords accountinfo software for linux

google adwords accountinfo

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 405
Google::Adwords::AccountInfo 0.6.0

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

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::AccountService 0.6.0

Google::Adwords::AccountService 0.6.0


Google::Adwords::AccountService is a Perl module to interact with the Google Adwords AccountService API calls. more>>
Google::Adwords::AccountService is a Perl module to interact with the Google Adwords AccountService API calls.

SYNOPSIS

use Google::Adwords::AccountService;
use Google::Adwords::AccountInfo;
use Google::Adwords::CoverageType;
use Google::Adwords::EmailPromotionsPreferences;
use Google::Adwords::CreditCard;
use Google::Adwords::Address;

my $service = Google::Adwords::AccountService->new();

# login to the Adwords server
$service->email($email)
->password($password)
->clientEmail($cemail)
->applicationToken($app_token)
->developerToken($dev_token);

# getAccountInfo
my $account = $service->getAccountInfo();
print "currencyCode : " . $account->currencyCode . "n";
print "descriptiveName : " . $account->descriptiveName . "n";

# getClientAccounts
my @emailaccounts = $service->getClientAccounts();
print "getClientAccounts : " . join(|, @emailaccounts) . "n";

# getCreditCard
my $creditcard = $service->getCreditCard();

# setLoginInfo
my $ret_setlogininfo= $service->setLoginInfo(email@example.com, toto);

# setLocalTimezone to brrr ...
my $ret_setlocaltimezone = $service->setLocalTimezone(America/Anchorage);

# setCreditCard
my $cc = Google::Adwords::CreditCard->new
->cardNumber(12345678912346)
->cardType(VISA)
->cardVerificationNumber(123)
->expirationMonth(1)
->expirationYear(2008);

my $addr = Google::Adwords::Address->new
->addressLine1(down the street)
->city(Paris)
->companyName(Up there)
->countryCode(FR)
->emailAddress(me@example.com)
->name(Up there)
->phoneNumber(+33112345678)
->postalCode(75020);

my $ret_setcreditcard = $service->setCreditCard($cc, $addr);

# createAdWordsAccount
my $emailPrefs = Google::Adwords::EmailPromotionsPreferences->new
->marketResearchEnabled(1)
->newsletterEnabled(1)
->promotionsEnabled(0);

my $covType = Google::Adwords::CoverageType->new
->optInContentNetwork(0)
->optInSearchNetwork(1);

my $ret = $service->createAdWordsAccount({
loginEmail => $loginEmail,
password => $password,
languagePreference => $lgPref,
emailPrefs => $emailPrefs,
currencyCode => $curCode,
cardInfo => $creditcard,
contactInfo => $address,
defaultAdsCoverage => $covType,
timeZoneId => $timeZoneId
});

# updateAccountInfo
$account->primaryBusinessCategory(Advertising, Marketing, SEO);
my $ret_updateaccountinfo = $service->updateAccountInfo($account);

This module provides an interface to the Google Adword AccountService API calls.

<<less
Download (0.041MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1070 downloads
Google::Adwords 1.3.1

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::Data 0.6.0

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.

<<less
Download (0.041MB)
Added: 2006-11-28 License: Perl Artistic License Price:
1060 downloads
Google::Adwords::AdGroupEstimate 0.6.0

Google::Adwords::AdGroupEstimate 0.6.0


Google::Adwords::AdGroupEstimate is a Google Adwords AdGroupEstimate Object. more>>
Google::Adwords::AdGroupEstimate is a Google Adwords AdGroupEstimate Object.

This object is a read-only object used in calls from Google Adwords API.

More info is available here -

http://www.google.com/apis/adwords/developer/AdGroupEstimate.html

METHODS

Accessors (read-only)

* id - The existing ad group id, if any, to which this estimate corresponds. If the ad group is new (meaning that all the estimated keywords are new), the id is -1.
* keywordEstimates - The keyword estimates for this ad group. Each Google::Adwords::KeywordEstimate contains the estimation results, such as estimated clicks per day, for that keyword.

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Campaign 0.6.0

Google::Adwords::Campaign 0.6.0


Google::Adwords::Campaign is a Google Adwords Campaign Object. more>>
Google::Adwords::Campaign is a Google Adwords Campaign Object.

SYNOPSIS

use Google::Adwords::Campaign;
use Google::Adwords::CampaignService;

# create a new campaign object
my $campaign = Google::Adwords::Campaign;

# set values for the campaign object
$campaign->name(My Final Try);
$campaign->dailyBudget(10000000);

# target a certain city in US
$campaign->geoTargeting({
cities => [ Pelican, AK US ],
});

# create the campaign service object
my $campaign_service = Google::Adwords::CampaignService->new();

# need to login to the Adwords service
$campaign_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($application_token);

# if you use a MCC
$campaign_service->clientEmail($client_email);

# now create the campaign
my $campaign_response = $campaign_service->addCampaign($campaign);

print "New campaign ID is :" . $campaign_response->id;

This object should be used with the CampaignService API calls

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Creative 0.6.0

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

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::ReportJob 0.6.0

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
<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google Reader Notifier 0.30

Google Reader Notifier 0.30


Google Reader Notifier is a Firefox extension that shows you how many unread items you have in your Google Reader account. more>>
Google Reader Notifier is a Firefox extension that shows you how many unread items you have in your Google Reader account.

<<less
Download (0.055MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
888 downloads
Google Gears Beta

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
Download (0.42MB)
Added: 2007-06-01 License: Freeware Price:
1030 downloads
Google::Adwords::AdGroupRequest 0.6.0

Google::Adwords::AdGroupRequest 0.6.0


Google::Adwords::AdGroupRequest is a Google Adwords AdGroupRequest Object. more>>
Google::Adwords::AdGroupRequest is a Google Adwords AdGroupRequest Object.

METHODS

Mutators (read/write)

* id - The id of the ad group to be estimated. All keywords in the ad group will be estimated. Optional - if omitted indicates a new ad group.
* keywordRequests - The keywords to be estimated. This list must contain at least one Google::Adwords::KeywordRequest object.
* maxCpc - The bid for this ad group in micros.

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::AdGroupService 0.6.0

Google::Adwords::AdGroupService 0.6.0


Google::Adwords::AdGroupService is a Perl module to interact with the Google Adwords AdGroupService API calls. more>>
Google::Adwords::AdGroupService is a Perl module to interact with the Google Adwords AdGroupService API calls.

SYNOPSIS

use Google::Adwords::AdGroup;
use Google::Adwords::AdGroupService;

# create a new adgroup object
my $adgroup = Google::Adwords::AdGroup->new;

# set values for the adgroup object
$adgroup->name(My Final Try);
$adgroup->maxCpc(500000);

# create the adgroup service object
my $adgroup_service = Google::Adwords::AdGroupService->new();

# need to login to the Adwords service
$adgroup_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($application_token);

# if you use a MCC
#$adgroup_service->clientEmail($client_email);

# now create the adgroup
my $campaignId = 1234; # within this campaign
my $adgroup_response = $adgroup_service->addAdGroup($campaignId, $adgroup);

print "New adgroup ID is :" . $adgroup_response->id;

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::CoverageType 0.6.0

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

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::StatsRecord 0.6.0

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

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google Maps Plugin 5.2

Google Maps Plugin 5.2


Google Maps Plugin is an easy way to embed custom Google Maps on a Web site. more>>
Google Maps Plugin is an easy way to embed custom Google Maps on a Web site. The project includes features such as multiple markers, paths, and general drawings.

If you use WordPress.org blogs, you will be able to install this software easily as a WP plugin.
<<less
Download (0.019MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
897 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5