Python - 您正在调用已弃用的广告版本 API

Python - You are calling a deprecated version of the Ads API

这似乎是使用 Facebook APIs 时的一个常见问题。我正在尝试通过 Python 使用广告 API。当我使用 Graph API Explorer 对其进行测试时,我使用的是 9.0 版并且没有收到任何错误。我正在尝试使用 Python 实现 API 调用,但是当我指定版本 9.0 时,我收到此错误日志:

facebook.GraphAPIError: Valid API versions are '2.8', '2.9', '2.10', '2.11', '2.12', '3.0', '3.1'

我的代码:

import facebook
token = "<token>"
graph = facebook.GraphAPI(access_token=token, version="9.0")
events = graph.request("?ids=<id>")
print(events)

但是当我使用版本 3.1< than 3.1 时,我收到另一个错误:

facebook.GraphAPIError: (#2635) You are calling a deprecated version of the Ads API. Please update to the latest version: v9.0.

我该如何解决?

似乎与旧版 SDK 有关(参见 github 上的代码)

建议你更新到官方Facebook SDK for Python