Hi! I obtained Analytics Beta access from Google then created a new Apps Script project. I added the following code to the project, saved it and ran it.
ANALYTICS_ID = "66883730";
function test() {
props = Analytics.Management.Webproperties;
prop = Analytics.newWebproperty();
props.insert(prop, ANALYTICS_ID);
}
Got the message "Your project does not have access to this feature. (line 6, file "")". Why am I unable to perform Analytics Web property writes, when I already have obtained beta access?