Skip to content

Added function to get xml format string for environment used GA api v2. #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tomothumb
Copy link

Hi,

Google stop to support api v2 last month.
I was using GA api v2 with other library, then I found this gapi.

A product which I needed to maintenance was supported only xml format and It's kind of complicated to change structure from parse xml to JSON.

Finally I added a function to get xml format string. It will not need to change a lot the current production code(api v2 user).

Sample is here

$ga = new gapi($email, $key);
$ga->requestReportData(............);
$reportxml = $ga->getResultsXML();

as note,
This function will return brief xml format. This isn't perfect copy which GA api v2 returned before.
so I'm not sure whether this is good way or not.

See this gust. This returns string like this.
https://gist.github.com/tomothumb/7548cb89fb211cb382a2

I referred to this sample file to make this function.
https://code.google.com/p/ga-api-http-samples/source/browse/trunk/src/v2/dataFeedResponse.xml

@rogervila
Copy link

We could create the same for JSON
return $ga->getResultsJSON()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants