Hi Arkesh,
I'm sorry i could not completely understand your first question. I just downloaded the .NET Reporting API client library source code and compiled using "c:\<PATH_TO_.NET_FRAMEWORK>\csc.exe ReportingAPIClient.cs" and was able to successfully do so. Do you see any error messages at the command prompt? To obtain tokens from a standalone application, you need to POST to ClientLogin interface with your credentials: http://code.google.com/apis/apps/reporting/google_apps_reporting_api.html#Authentication In response you will get SID, LSID and Auth tokens. The Reporting API uses SID token, the Auth token is used for Provisioning API and LSID token is not relevant in this context. The Reporting API client library will obtain a SID token from ClientLogin interface and use that to fetch reports so you won't need an additional tool. You did mention that you were using the 'Auth' token for the report request and receiving Google home page as response. If you are writing your own code instead of using the library, could you please try with SID token? Hope that helps. -Anirudh On Aug 19, 1:27 am, Arkesh <[EMAIL PROTECTED]> wrote: > HI, > I have a few questions on Google Api > reportinghttp://code.google.com/apis/apps/reporting/google_apps_reporting_api.... > > (1) As .NET client library > * Download the .NET client library > is not working properly at > Path to CSC: > C:\Windows\Microsoft.NET\Framework\VERSION\csc.exe > > Example: > C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe > ReportingAPIClient.cs > > Which software or tool or patch one should use for generating SID/LSID/ > AUTH Key??? is the "poster add ons" for firefox is ok??? > > (2) what is difference between SID/LSID/AUTH key??? > (3) After sending request > athttps://www.google.com/hosted/services/v1.0/reports/ReportingData > > ************Accounts Report*************** > <?xml version="1.0" encoding="UTF-8"?> > <rest xmlns="google:accounts:rest:protocol" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> > <type>Report</type> > <token>DQAAAHQAAADgjT625094TCzxcWC4Ss-MH...</token> > <domain>example.com</domain> > <date>2006-08-01</date> > <page>1</page> > <reportType>daily</reportType> > <reportName>accounts</reportName> > </rest> > ***************end************************* > why it is just generating Google home page only.It should generate > actual report. > > (4) Here i consider <type><token> <domain> <date> <page> <reportType> > <reportName> as ok.I read all the forums /Google help everything.But > still it generate html code of GOOGLE Home page.Even i put Auth key in > token,date as valid YYYY-MM-DD format,domain as working valid domain > etc??? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Apps APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-apps-apis?hl=en -~----------~----~----~----~------~----~------~--~---
