gzog / analytics-issues

Automatically exported from code.google.com/p/analytics-issues
0 stars 0 forks source link

Missing uiName on ga:socialNetwork #866

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
---------------------------------------------------------------------------
NOTE: This tool is not designed to request help. It is only for reporting
issues and requesting features for the Google Analytics libraries.

If you are a developer and you need help, visit:
https://developers.google.com/analytics/help/

If you are not a developer and you need help, visit:
https://support.google.com/analytics
---------------------------------------------------------------------------
Name of affected component: Metadata API

Name of related library and version, if applicable (e.g. Java, Python,
HTTP, Objective-C, etc.):
HTTP

Issue summary:
Provide a brief summary of the issue you're experiencing.

Steps to reproduce issue:
1. Load https://www.googleapis.com/analytics/v3/metadata/ga/columns?pp=1
2.
3.

Expected output:
What do you expect to see after performing the above steps?
an attributes.uiName value that is not an empty string. Expected "Social 
Network"

Actual results:
What do you actually see after performing the above steps?
attributes.uiName of empty string, ""

Notes:
This is an excerpt of the response returned from 
https://www.googleapis.com/analytics/v3/metadata/ga/columns?pp=1

{
   "id": "ga:socialNetwork",
   "kind": "analytics#column",
   "attributes": {
    "type": "DIMENSION",
    "dataType": "STRING",
    "group": "Traffic Sources",
    "status": "PUBLIC",
    "uiName": "",
    "description": "Name of the social network. This can be related to the referring social network for traffic sources, or to the social network for social data hub activities. E.g. Google+, Blogger, etc."
   }

uiName should have the value "Social Network"

Original issue reported on code.google.com by m...@admind.io on 29 Jan 2016 at 5:30