gpt4 book ai didi

python - 如何列出 Google Merchant Center Feed

转载 作者:太空宇宙 更新时间:2023-11-03 18:17:14 25 4
gpt4 key购买 nike

我正在尝试通过 Google API 读取客户的供稿。我获得了访问 token 。

这是我遵循的文档:https://developers.google.com/shopping-content/developers-guide-python#authentication

此处的示例显示了要使用的 ACCOUNT_ID,但我不明白从哪里接收此信息。

import gdata.contentforshopping.client
ACCOUNT_ID = '1234567'
shopping_client = gdata.contentforshopping.client.ContentForShoppingClient(account_id=ACCOUNT_ID)

这是我到目前为止所做的:

import gdata.contentforshopping.client
import gdata.gauth

part = 2

auth_token = gdata.gauth.OAuth2Token(client_id=CLIENT_ID, client_secret=CLIENT_SECRET, scope=SCOPE, user_agent=USER_AGENT)
shopping_client = gdata.contentforshopping.client.ContentForShoppingClient()
authorize_url = auth_token.generate_authorize_url(redirect_uri=APPLICATION_REDIRECT_URI)

if part == 1:
print 'Please visit: %s' % authorize_url

elif part == 2:

query = {'code': 'xxxx'} # received from result of part == 1
auth_token.get_access_token(query)
auth_token.authorize(shopping_client)
accounts = shopping_client.GetClientAccounts()
print(accounts)

最佳答案

事实证明没有正确的方法来做到这一点。您必须从旧 API 中获取错误并解析它才能找到您的商家 ID。

来源:https://groups.google.com/forum/#!topic/google-content-api-for-shopping/3iLEm9puJis

关于python - 如何列出 Google Merchant Center Feed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24827591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com