Adobe 分析 Python API [英] Adobe Analytics Python API

查看:49
本文介绍了Adobe 分析 Python API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试返回上个月的页面点击量.我正在使用可以在 HERE

I am trying to return page hits for the last month. I am using a Python Sdk that can be found HERE

我正在使用以下代码:

report = suite.report.element("evar3").run()

它只返回前 10 名.我怎样才能提供完整列表?

It is only returning the top 10. How can I get to provide the full list?

推荐答案

至于 Adob​​e API 请求本身,您需要指定 top 属性.

As far as the Adobe API request itself, you need to specify the top property.

我不熟悉您链接的那个 python-sdk 库,甚至不熟悉一般的 python,所以这只是一个有根据的猜测,但查看您链接的文档,您应该能够执行以下操作:

I'm not familiar with that python-sdk library you linked or even python in general so this is just an educated guess, but looking at the documentation you linked, looks like you should be able to do the following:

report = suite.report.element("evar3",top=10).run()

这篇关于Adobe 分析 Python API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆