Hi, i have emailed yahoo support twice, without any answer, i have a problem, i cannot seem to get my reports out of the API system any longer, it has worked...
Hello, We have also been having a lot of errors in retrieving reports. Anyone else having issues? Category detail seems to be giving us the most issues. Anyone...
What errors is everyone having? We have these the most: (with the command: getCategoryDetail) - Your report contains a large amount of data and is being ...
Is anyone else using Nusoap to interface with the new EWS? If so, how did you get by nusoap not properly receiving the wsdl input parameters in the opData...
... Okay, I guess I figured out my own question. It can be done with NuSOAP, although it's a little tricky. Actually, for most people it probably wouldn't be...
Does anyone know of a way to reset the sandbox so that all activity will be deleted and we can start fresh. It's a drag to have to change data in the code all...
Hey Michael, There is currently no way to clean out the account data in the sandbox. Your best bet is to delete all the components and then ignore deleted ...
Yes, that helps me understand. Thank you. Unfortunately, that is not great. Seems like it should automatically clean itself out, but what do I know anyways :-)...
Is it really possible that I have reached my account limit in the sandbox? How are we supposed to make changes to our software if we don't have access? I...
... Also, there is no possible way that I have used my quota today. I got this error on my first request. Here is what the website says: "Quotas for the...
Hey Michael, This error relates to the account size caps, not your usage quota. As discussed in a previous note, you should delete components in your account...
... Thanks. So I'm assuming that the only way to delete the campaigns (these are the culprits) is to run a query against the API to pull their IDs and then run...
This is my first attempt at running the new API. I'm using PHP5 on my local machine (OSX). When I download the sample PHP5 example from the documentation...
Correct. You must use IDs to delete or modify components. If you don't store the IDs already, then you must use the 'getters' to fetch them. In this case,...
Busy day today! Sounds like a file permissions problem. Make sure that wherever on the filesystem you are running the code from, you have permissions to write...
Hey Michael, The problem is that the name element cannot be left empty. You must either: 1) Omit the field from the update 2) Use <name xsi:nil="true"/> 3)...
Cool, glad to help. Note that php5 and its built-in SOAP extensions seem to work great. Granted, this is not always an upgrade option for everyone. Best, ...
Hi, We're looking for a report that includes keyword data aggregated daily for a date range. The closest we can find is the keyword summary report except we'd...
Hi, When you say "aggregated daily", do you mean that each day is represented individually? If so, then yes, the way you are doing this is the right way for...
Maybe I'm not doing something right, but should I be receiving a 500 Internal Server Error instead of a Soap Fault? What am I doing wrong here? My Request: ...
Michael, This error is caused by the encoding type you've specified. EWS only supports UTF-8. Change "ISO-8859-1" to "UTF-8" and this works. I'll push for...
What are the allowed ranges for the campaignOptimizationGuidelines. We are told the type of values, but no limits have been expressed. I am receiving an E2022...
This is a bug in the current sandbox; you cannot turn optimization on after the campaign is created. The next launch (schedule TBD; expect some communication...
For the PHP developers out there: http://devzone.zend.com/node/view/id/658 Note that I am not endorsing this, just sharing some information :) -Y!SM Monkey...