0

我正在尝试使用 python 客户端库通过服务帐户(客户端电子邮件和 p12 证书)连接到 google doubeclick api,如下例所示:

http://code.google.com/p/google-api-python-client/source/browse/samples/service_account/tasks.py

它返回给我一个空的 access_token:

In [9]: type(credentials.access_token)
Out[9]: <type 'NoneType'>

这有什么意义?有什么我可能做错了吗?我也尝试过访问示例中的任务 api(认为双击 api 可能不是受支持的范围),但结果相同。

更新(示例代码):

from oauth2client.client import SignedJwtAssertionCredentials
import httplib2
from adspygoogle.dfp import DfpClient

f = file('/path/to/.ssh/google-api.p12', 'rb')
key = f.read()
f.close()

credentials = SignedJwtAssertionCredentials('<email>', key, scope='https://www.google.com/apis/ads/publisher')
credentials.refresh(http)
http = httplib2.Http()
http = credentials.authorize(http)

client = DfpClient.DfpClient(headers={'networkCode': '<code>', 'applicationName': 'test', 'userAgent': 'test', 'oauth2credentials': credentials})

inventory_service = client.GetInventoryService()
inventory_service.getAdUnitsByStatement({'query':''})

错误:

DfpAuthenticationError: [AuthenticationError.NO_NETWORKS_TO_ACCESS @ ]

4

1 回答 1

0

NO_NETWORKS_TO_ACCESS 错误特别表示您确实对 API 端点进行了身份验证,但您的帐户未与网络关联。在此页面https://developers.google.com/doubleclick-publishers/docs/reference/v201203/InventoryService?hl=en上搜索该错误。

您需要通过 DoubleClick 用户界面邀请您正在验证的 Google 帐户加入网络,或者您需要使用模拟。

最近在文档中发布了有关 DFP API 和服务帐户的更具体的文章https://developers.google.com/doubleclick-publishers/docs/service_accounts。我建议您查看该文档的替代部分,以确定您是否更喜欢安装 OAuth 2.0 的流程。

于 2013-04-12T16:59:16.407 回答