-
Understanding PHP Implementation of the Google Analytics API
I’ve been digging into the Google Analytics PHP API recently and I’m fairly comfortable with pulling accounts, account summaries, and property summaries. The property summaries are interesting – they’re actually called from the account summary rather than directly from the account itself. Anyway, my real hang-up is when I try to create a new property for an account.
Here’s what I have so far:
[ include PHP code snippet ]Once I run the script, here’s my output:
[ include output snippet ]Shouldn’t the propertySummary list now include the property I just created? What am I missing?
Log in to reply.