When I was in SF in early January I heard word of a "Change log"
feature which we could request and would give us a list of campaigns,
adgroups, keywords, ad creatives, etc. etc. that had been mutated/
inserted/deleted. Is this still on deck and for when?
-Taylor
--
You received this message bec
Thanks for your answer.
How can i define the GeoPoint ?
can you tell me why this code is not working ?
$geoTargetProx = new ProximityTarget();
$geoTargetProx->geoPoint = array(45.5987,4.5123);
$geoTargetProx->radiusDistanceUnits = 'KILOMETERS';
$geoTargetProx->radiusInUnits = '150';
thanks a lo
Hi Ajit, I think its a Ruby thing rather than an API thing. You're
1. making base_kwd an empty array, then you're
2. reassigning it to a new instance of Keyword. Then you
3. assign a new array containing only the last base_kwd (of type Keyword)
to related_search.keywords.
I think you
I also tried this :
$geoTargetProx = new ProximityTarget();
$legeopoint= new GeoPoint();
$legeopoint->latitudeInMicroDegrees=100;
$legeopoint->longitudeInMicroDegrees=100;
$geoTargetProx->geoPoint = $legeopoint;
$geo
Hi Dian,
I understand that this functionality is confusing, and I'll do my best
to clear it up.
1) The TargetingIdeaService uses a complicated backend to determine
relevant keywords, and I don't have the full information about how it
works. I'm not sure how much weight, if any, is put into the m
Hi Scott,
It's always best to turn on SOAP XML logging in these situations,
since it lets you see how the request is actually being sent to the
API servers. This can be done using:
$client->set_debug(*STDERR);
In your case it seems like the and elements aren't
being serialized correctly. T
Hi John,
We don't have a central repository of sample XML requests, but our
goal is that through using the client libraries and/or referencing the
developer documentation the structure of requests should be apparent.
I'd also recommend taking a look at soapUI, a great program I use to
send raw SOA
nobody can help me ? Please ...
On Feb 23, 7:24 pm, Guillaume wrote:
> Hi,
>
> i actually use the Adwords API in PHP, all is working good except for
> Geotargeting.
>
> if i want to target a country i do :
>
> // Create geo targets.
> $geoTargetList = new GeoTargetList();
> $geoTargetList->campai
Hi Mike,
In order to retrieve stats you need to add an AdStatsSelector object
in your selector, with the date range specified. This will cause the
API server to return the Stats object with your results automatically.
http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupAdService.A
Hi Manish,
This could be caused by making too many requests to the ClientLogin
API, which is done every time you create a new AdWordsUser or
service. Please ensure that you are re-using your users and services
between requests.
Best,
- Eric Koleda, AdWords API Team
On Feb 23, 1:11 pm, Manish Kh
Hi,
The documentation for the ProximityTarget is here:
http://code.google.com/intl/fr/apis/adwords/v2009/docs/reference/CampaignTargetService.ProximityTarget.html
All you need to do is create a new ProximityTarget, set the fields,
and add it to the list of targets in your GeoTargetList. Are
In the 6.2.0 and 6.1.0 version for .NET, it is included. However, it
is not documented.
Its implementation is located in a different source file, not
adwordsuser.cs but adwordsservice.cs. You've got to love partial
classes.
The sample project also uses this constructor.
--
You received this mess
Thanks for your answer,
i don't see which field is wrong.
my code :
// Create proximity targets.
$geoTargetProx = new ProximityTarget();
$legeopoint= new GeoPoint();
$legeopoint->latitudeInMicroDegrees='45746250';
$legeopoint->long
This morning, code that has been working for a long time is failing:
I have a call to v13/CriterionService.getAllCriteria(AdGroupRemoteID)
but then when I call getText() on any one of the resulting criteria,
my app server is throwing this error:
"The getText method was not found. Either there ar
That's what I first tried, but it causes the header to not be included
in the SOAP call. Check it out:
my $client = Google::AdWords::Client->new({'path' => '/var/www/
testing'});
$client->set_debug(*STDERR);
my $info_selector = {
selector => {
apiUsageType => 'FREE_USAGE_AP
I'd like to request to consider having API for change history. It's
useful from auditing and also to evaluate work efficiency. Thanks.
--
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To post to this group, send email to adwords-...@googlegr
I'm migrating my v13 code to v200909. For retrieving all ads from all
adGroups and all campaigns I use following code:
AdWordsUser user = new AdWordsUser();
AdGroupAdService service =
(AdGroupAdService)user.GetService(AdWordsService.v200909.AdGroupAdService);
AdGroupAdPage page = service.get(new A
Found it. Thanks a lot for your help!
On Feb 24, 7:16 am, Zweitze wrote:
> In the 6.2.0 and 6.1.0 version for .NET, it is included. However, it
> is not documented.
>
> Its implementation is located in a different source file, not
> adwordsuser.cs but adwordsservice.cs. You've got to love partial
In Bisual Studio you can right click the class name, and chose "Go to
definition". This will list all the files where your partial class is
defined.
--
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To post to this group, send email to adword
Hi,
It looks like the ids are somehow getting corrupted before or while
you are making the request. Is it possible to check the ids in the
operations before you make the request and compare them to the ids in
the returned errors.
Best,
- Eric
On Feb 23, 7:05 pm, Aihua wrote:
> We are using Pyt
Hi,
This error appears to be generated client side, and I don't have any
other reports of this happening with other clients yet. Could you
follow up with your network admins perhaps to pinpoint this error?
Best,
- Eric Koleda, AdWords API Team
On Feb 23, 7:31 pm, "trafficdirec...@localmatters.c
Hi Suraiya,
It looks like you are making a successful request to the AdWords API
sandbox environment. The alternativeUrl won't show up in the XML (the
namespaces don't change for calls to the sandbox).
Best,
- Eric
On Feb 23, 11:38 pm, Suraiya wrote:
> Hi Eric,
> Please have a look at my previ
Hi Eric,
I figured out the issue with the sandbox. In your adwords.properties
or equivalent file, the field name for the sandbox should be
alternateUrl instead of alternativeUrl. It looks like the
documentation provided in the template for the adwords.properties file
is wrong.
I do not get any war
Hi Eric,
Thanks for your response.
Yes - location field (sandbox url appears there) is not in the soap
trace.
My supervisor helped me to be confident that the request in fact went
to sandbox after my changes in the adwords.properties file.
Once again thanks for time.
Suraiya
--
You received this
XXX
20100223
I'm looking at the response from a bulk mutate request, basically at
this point:
http://code.google.com/apis/adwords/v2009/docs/reference/BulkMutateJobService.ReturnValueResult.html
and I'm not sure how I can figure out which kind of operand is being
returned, since it can be any one of Ad, AdGro
Hi Scott,
It looks like the SOAP header is only being partially populated, and
that the credentials aren't being set. Have you changed how you load
your credentials? Are you using a properties files? What is the
'path' variable you are passing in to the constructor?
Best,
- Eric
On Feb 24, 11
Hi Taylor,
This is still a service that is being thought through, but at this
point there is no definite decision or timeline for when it would be
available.
Best,
- Eric Koleda, AdWords API Team
On Feb 24, 4:04 am, RockyRaccoon wrote:
> When I was in SF in early January I heard word of a "Chan
Hi Tang,
Your last example looks correct. Can you post the SOAP XML request
and response this is generating?
Best,
- Eric
On Feb 24, 5:40 am, Tang wrote:
> I also tried this :
>
> $geoTargetProx = new ProximityTarget();
>
> $legeopoint= new GeoPoint();
> $legeop
Hi Tang,
Thank you for posting the complete code, I can see the problem now.
The operand of a CampaignTargetOperation is a TargetList, not an
individual target. In this case the operand should be a
GeoTargetList:
http://code.google.com/apis/adwords/v2009/docs/reference/CampaignTargetService.G
Hi John,
In another thread you mentioned you solved this problem. The cause
was that the criterion was a Website, not a Keyword, and therefore
didn't have a text field.
Best,
- Eric Koleda, AdWords API Team
On Feb 24, 10:58 am, John Bliss wrote:
> This morning, code that has been working for a
Hi,
Thanks for the suggestion, it is a feature request we are currently
evaluating but at this point I don't have any more information.
Best,
- Eric Koleda, AdWords API Team
On Feb 24, 10:16 am, "g...@atara.co.jp" wrote:
> I'd like to request to consider having API for change history. It's
> us
Network admins did setup network monitor which have not shown any
errors.
Here is comment from our IT:
"We saw no drops on our system monitor. If you have other suggestions
for things for IT to check, we're glad to check them, but as of right
now we have checked the network and it appears to be wo
Network admins did setup network monitor which have not shown any
errors.
Here is comment from our IT:
"We saw no drops on our system monitor. If you have other suggestions
for things for IT to check, we're glad to check them, but as of right
now we have checked the network and it appears to be wo
Hi Eric, thanks for the info.
How can you call 2 objects under selector? I am unable to get a
corresponding AdStatsSelector to AdGroupAdSelector. When I create a
new AdStatsSelector, it pulls all ads from my account, not the ones
from my adgroup.
Sorry, but I couldn't find any examples for stats
Here is the soap request and the error we are getting,
http://schemas.xmlsoap.org/soap/
envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://
www.w3.org/2001/XMLSchema-instance">
https://adwords.google.com/api/
adwords/job/v200909">
https://adwords.google.com/api/adwords/cm/
Hi Eric,
I tried TargetingIdeaService on the sandbox. I am getting a soap error
and I noticed that another person reported something similar at
http://groups.google.com/group/adwords-api/browse_thread/thread/35994a667c80ea0b/3478cbed16b9a9d1?lnk=raot
My code:
---
my $client = Google::
Hi Eric,
Please have a look at my previous post as well. At
http://groups.google.com/group/adwords-api/browse_thread/thread/82bd7fcdff3afce1/,
you mentioned a valid soap structure.
How can I form that structure using different methods of objects of
type RelatedToKeywordSearchParameter, LanguageTarg
38 matches
Mail list logo