Re: ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector in MCC Account

2011-10-11 Thread Chirag
Thanks Kevin, Yes, I am storing ID as float.I changed it to Int and now it is working fine. On Oct 12, 1:52 am, Kevin Winter wrote: > Hi Chirag, >   Could you please double check that the ID you are using is not actually a > float?  Report Definition IDs should be of the form: 123456789 and sh

Re: ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector in MCC Account

2011-10-11 Thread Kevin Winter
Hi Chirag, Could you please double check that the ID you are using is not actually a float? Report Definition IDs should be of the form: 123456789 and should not have a decimal element or be used as floats. If you are still having problems troubleshooting, could you try defining a new report

Re: ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector in MCC Account

2011-10-11 Thread Chirag
e(__FILE__) . '/reports/' . $fileName; // Download report. ReportUtils::DownloadReport($reportDefinitionId, $path, $user); But i am getting error "ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector". Please note i have changed $reportDefinitionId for sec

Re: ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector in MCC Account

2011-08-30 Thread Kevin Winter
Hi, It looks like you are hardcoding the report definition id after creating the definition for a new report. Are you sure that is a valid reportDefinitionId for the production environment? Report definitions cannot be shared between production and sandbox, so if that came from the sandbox

ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector in MCC Account

2011-08-24 Thread Felipe Marques
Good morning for all, I did the following code: getReportFields($reportType); $fieldsBlockeds = array( 'ConversionCategoryName', 'ConversionTypeName', 'ClickType', 'BudgetLostImpressio

Re: ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector

2011-08-15 Thread Eric Koleda
Hi Tim, Without looking into that specific case it's hard to determine the cause. In general a delay shouldn't be needed between requests. My guess is that trying to download it again won't work, but if you provide the report definition ID I can look into it further. Best, - Eric Koleda, AdW

ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector

2011-08-11 Thread timp
Greetings, I've been running tests of reporting. On only one run, I received a CSV for one account with ||| numbers ||| ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector as its only line. On subsequent and previous runs that account ran correctly. --- Is ther

Re: Downloading reports with an MCC login - ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector???

2011-07-28 Thread GemBox Software
Hi, you should use either clientEmail or clientCustomerId, not both. Also, clientEmail should be client email not MCC account email. For Reporting Basicspage here is how raw HTTP message should look like: GET /api/adwor

Re: Downloading reports with an MCC login - ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector???

2011-07-27 Thread dkasak
OK now I don't think it's a case-mangling thing. I've just tested with curl, and I'm getting the same error. Here is my call: curl \ -v \ -H "authorization: GoogleLogin auth=some_big_token" \ -H "clientCustomerId: a_numeric_id" \ -H "clientEmail: an_mcc_account_email" \ https://adword

Downloading reports with an MCC login - ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector???

2011-07-27 Thread dkasak
Hi all. I'm adding MCC login support, and I've hit an issue downloading reports. For reports created with an MCC login, I'm getting: ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector??? I have added the clientCustomerId header in the HTTP request. HOWEVE