Hello all ... I am submitting a addReportRequestWithAccountAggregation() for my account. In the returned XML, there seems to be quite a bit of variance on...
302
Yahoo! Search Marketi...
ysm_monkey
Dec 4, 2006 6:49 pm
Hey Don, I'd suggest creating a list of all possible columns up front, as they are documented in the Reports section of the online documentation. Then just...
303
don.frazier
Dec 5, 2006 5:08 pm
Thank you monkey. Upon reviewing the documentation again, I see the following: "KeywordSummary A generated report that contains a pre-determined set of...
304
Yahoo! Search Marketi...
ysm_monkey
Dec 5, 2006 9:26 pm
Hey Don, We'll take your thoughts into consideration for improving either the docs or API. Thanks, -Y!SM Monkey...
305
Yahoo! Search Marketi...
ysm_monkey
Dec 6, 2006 6:55 pm
Don, Someone pointed out to me that you can use the TSV format for reports to achieve your desired solution. The columns will be consistent, and it sounds...
306
don.frazier
Dec 7, 2006 4:46 pm
Thank you Monkey. If only it were so easy. The TSV file has some additional header information that lists the report parameters. This precedes the actual...
307
y_trafficstrategies
y_trafficstr...
Dec 13, 2006 8:23 pm
I am attempting to implement Yahoo's new EWS API and I've run into a roadblock. When .NET attempts to deserialize the SOAP message, it Throws-up on Date...
308
Yahoo! Search Marketi...
ysm_monkey
Dec 13, 2006 11:14 pm
I'm guessing it's choking on the milliseconds. But I don't know enough about .NET implementations to provide a suggestion on a fix. There are probably other...
309
Brian Graves
verde160
Dec 14, 2006 12:03 am
The only problems I've had in .NET (so far) regarding time was initializing the report request structure. The problem involved the timezone and I got it to...
310
y_trafficstrategies
y_trafficstr...
Dec 14, 2006 5:13 pm
Thanks for the replies. The problem is not with sending dates to Yahoo, that works fine. The problem is when I get data from Yahoo. For instance, when I call...
311
Brian Graves
verde160
Dec 14, 2006 6:11 pm
Here's what I use to get the campaign start date in VB.NET: Dim dtStartDate As New Date dtStartDate = campaign.startDate _____ From:...
312
don.frazier
Dec 14, 2006 10:24 pm
It ain't pretty but I use this anywhere I need to get a "date" from a Panama report. public static DateTime PanamaDate(string date) { string[] parts =...
313
Terry Cox
tropicalterry
Dec 15, 2006 8:14 pm
Does anyone have sample code that shows how to initiate a Keyword Report for all clients under a master account? I'm having issues with the different WSDL's. ...
314
Yahoo! Search Marketi...
ysm_monkey
Dec 15, 2006 9:44 pm
... Did you look at the sample code (does not show any reporting calls) that calls the LocationService and then the various campaign-mgtm services? You simply...
315
Terry Cox
tropicalterry
Dec 15, 2006 11:17 pm
Is that sample code up to date with the WSDL's? I downloaded the LocationService and ReportService production WSDL's, and ported the sample code over to VB.NET...
316
kdwmoney94309
Dec 18, 2006 4:29 pm
Hi, We can't get any keyword data for December 14th (for non-upraded accounts.. the old API); ie, Category Detail reports are empty. This happens every now and...
317
Terry Cox
tropicalterry
Dec 20, 2006 6:40 pm
Is this the correct format for a single day BasicReportRequest for December 13, 2006 if both myself and accounts are in the Eastern Time Zone? ...
318
y_trafficstrategies
y_trafficstr...
Dec 21, 2006 10:44 pm
When I attempt to call BasicReportServiceService.addReportRequestForAccountID() on the sandbox my .NET class throws a "System.Net.WebException: The request ...
319
Yahoo! Search Marketi...
ysm_monkey
Dec 21, 2006 11:26 pm
The URL you have below is incorrect. It's "BasicReportService", not "ReportService". Also, the best way to test in your browser is to request the WSDL by...
320
verde160
Dec 27, 2006 6:45 pm
Whenever I call getCampaignDailySpendLimit in the Budgeting service, I get the following exception error: "Missing Header: accountID." There is no accountID...
321
Tom Kucia
tkucia
Jan 2, 2007 9:42 pm
Terry, Did you ever found out the answer about string6? ... WSDL's, ... defined ... Marketing ... calls) ... result as ... account...
322
mcnisiv
Jan 3, 2007 7:47 pm
I am trying to create a C# wrapper for the production APIs using the wsdl.exe tool and am getting an error. Here is the command line that I am using to do...
323
bart.miller
bart.miller@...
Jan 4, 2007 12:32 pm
I'm trying to create a basic report using C# but I'm getting an error that says I'm missing a username,password, or accountid. Below is an abbreviated version...
324
don.frazier
Jan 4, 2007 4:31 pm
I'm getting the same thing. IE7 gives me a nasty warning but shows me the XML. You can view source on this, save it to some.wsdl and then generate pointing...
325
don.frazier
Jan 4, 2007 4:47 pm
You might try posting more code. In this example, you never created the objects for some of the properties. have you reviewed the samples? ... error that...
326
don.frazier
Jan 4, 2007 4:53 pm
string6 seems to be an early type that is no longer in any of the production wsdls. Update your code to use the new object type. ... within...
327
y_trafficstrategies
y_trafficstr...
Jan 4, 2007 5:17 pm
I'm trying to run the getKeywordsByAccountID method in KeywordServiceService and I keep getting this error message back from Yahoo: "Not enough message parts...
328
don.frazier
Jan 4, 2007 6:06 pm
just checked the doco ... try this instead: http://ysm.techportal.searchmarketing.yahoo.com/docs/wsdl/V1/LocationS ervice.wsdl ... going ... the ... ...
329
Yahoo! Search Marketi...
ysm_monkey
Jan 4, 2007 6:12 pm
Hey guys, I think the issue is the hostname you are using. 'marketing.ews.yahooapis.com' isn't the right host to use, and I expect a change to be made on the...
330
don.frazier
Jan 4, 2007 6:27 pm
Thanks monkey. Perhaps the "wsdl" links on pages such as http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/service s/BasicReportService.asp could...