简体   繁体   English

多渠道漏斗 API - 未知 API 或版本

[英]Multi-Channel Funnel API - Unknown API or Version

I want to get MCF data using an API, however getting an error:我想使用 API 获取 MCF 数据,但是出现错误:

googleapiclient.errors.UnknownApiNameOrVersion: name: analyticsmultichannelfunnel  version: v4

I am using the following code to connect:我正在使用以下代码进行连接:

credentials = ServiceAccountCredentials.from_json_keyfile_name(
    KEY_FILE_LOCATION, SCOPES)
print("test")
analytics = build('mcf', 'v4', credentials=credentials)
print(analytics)
return analytics

any idea how I can solve it?知道如何解决吗? Or where I can find a sample code for using MCF API in Python?或者我在哪里可以找到在 Python 中使用 MCF API 的示例代码?

The MCF API does not have a v4; MCF API 没有 v4; see the latest documentation for v3查看v3 的最新文档

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用 Tensorflow 对象检测 API(或其他)为多通道图像提供更快的 RCNN - Faster RCNN for multi-channel images with Tensorflow Object Detection API (or others) 将多声道PyAudio转换为NumPy数组 - Convert multi-channel PyAudio into NumPy array 从多通道图像中提取通道名称 - extract channel names from a multi-channel image 如何用多通道一维对象训练神经网络? - How to train neural networks with multi-channel 1D objects? 将多通道numpy数组转换为photoshop PSD文件 - Convert multi-channel numpy array to photoshop PSD file 支持多渠道订阅者的Python可观察实现 - Python observable implementation that supports multi-channel subscribers 创建多通道网络:“连接”对象没有“形状”属性 - Creating a multi-channel network: 'Concatenate' object has no attribute 'shape' 在 Pytorch 中使用 BCEWithLogitsLoss 的多通道 2D 掩码权重 - Multi-channel, 2D mask weights using BCEWithLogitsLoss in Pytorch 如何在不使用 OpenCV 库的情况下在 Python 中读取多通道 16 位每通道图像? - How to read multi-channel 16-bit-per-channel images in Python without using OpenCV library? 使用 OpenCV 和 Numpy 从另一个图像中提取的像素坐标创建多通道图像 - Create a multi-channel image from pixel coordinates extracted from another image with OpenCV and Numpy
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM