I got developer account created for adobe analytics and received a link to complete my account. while account creation it asks for password only. After entering the password i logged in successfully. But while connecting adobe analytics through python it asks for username/password.
Where i can get the username which i can use with python ?
I have tried the name showing on top right corner after successful login to the adobe analytics but did'nt worked for me.
Do help me or redirect me to the concerned team.
Solved! Go to Solution.
Views
Replies
Total Likes
You should this documentation: GitHub - AdobeDocs/analytics-1.4-apis: Documentation and helpful resources for calling the Analytics...
analytics-1.4-apis/wsse_authentication.md at master · AdobeDocs/analytics-1.4-apis · GitHub
To get the username and password you will need to be added to the web services group for Adobe Analytics. Once it is done, an admin in your company can go to Admin >> Company Settings >> Web services and should be able to provide you the Web services username and Shared secret. That are the ones you need to use with WSSE.
Unfortunately I do not have any WSSE example in python.
Views
Replies
Total Likes
Check this documentation analytics-1.4-apis/index.md at master · AdobeDocs/analytics-1.4-apis · GitHub
Let us know what type of authentication you are using and if you are using API 1.4 or 2.0
Views
Replies
Total Likes
I am using WSSE authentication and API 1.4
Views
Replies
Total Likes
I am following the below github python package to connect to adobe analytics
GitHub - SaturnFromTitan/adobe_analytics: Pythonic wrapper for the Adobe Analytics API.
Views
Replies
Total Likes
You should this documentation: GitHub - AdobeDocs/analytics-1.4-apis: Documentation and helpful resources for calling the Analytics...
analytics-1.4-apis/wsse_authentication.md at master · AdobeDocs/analytics-1.4-apis · GitHub
To get the username and password you will need to be added to the web services group for Adobe Analytics. Once it is done, an admin in your company can go to Admin >> Company Settings >> Web services and should be able to provide you the Web services username and Shared secret. That are the ones you need to use with WSSE.
Unfortunately I do not have any WSSE example in python.
Views
Replies
Total Likes
Thanks for your reply.
How to get myself added to the web services group of Adobe Analytics.
Views
Replies
Total Likes
You need to ask an Adobe Analytics Admin to add you to the group
Views
Replies
Total Likes
Thanks Alexis for your help!!
I was able to connect to omniture via python api.
I am facing new issue now while fetching traffic report from omniture. I am trying to fetch pages report with sample data as below.
Page | Page Views | Total Seconds Spent | |||
1 | search results | 8313717 | 31.00% | 3.71E+08 | 31.30% |
2 | Search results | 1328461 | 5.00% | 41279803 | 3.50% |
3 | Groceries:Homepage | 1098038 | 4.10% | 43702900 | 3.70% |
4 | Favourites:My%20Favourites | 748054 | 2.80% | 1.32E+08 | 11.20% |
the inputs i am using in python code is mentioned below.
report_definition_traffic = ReportDefinition(
dimensions="page",
metrics=[
{ "id": "pageviews"}
],
date_from="2016-08-15",
date_to="2017-08-13",
elements=[
{
"id":"page", "top": 100
}
]
)
issue - manual numbers and python dataframe numbers are not matching. Also i am not able to find the option to pull the "Total Seconds Spent" metric.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies