如何列出Google Merchant Center Feed

时间:2014-07-18 14:36:25

标签: python api google-api google-api-python-client

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

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

1 个答案:

答案 0 :(得分:1)

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

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