我正在尝试通过Google API阅读客户的供稿。我有一个访问令牌。

这是我遵循的文档: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

10-08 11:15