0

我想在我的网页上显示所有客户评论。为此,我参考Get a review in the documentation。

但我对以下请求中的 account_name 感到困惑

https://mybusiness.googleapis.com/v4/accounts/account_name/locations/location_name/reviews

我应该为 account_name 使用什么值?

4

1 回答 1

0
  • Account_name = 您要获取数据的帐户的名称
  • Location_name = 您想要获得评论的位置的名称

使用帐户列表查找当前用户有权访问的帐户列表。使用带有帐户的位置列表来查找该帐户的位置列表

正如您在文档中看到的,帐户列表返回帐户对象列表。

Accounts.list

{
  "accounts": [
    {
      object(Account)
    }
  ],
  "nextPageToken": string
}

帐户资源包含当前已通过身份验证的用户的帐户名称列表。

{
  "name": string,
  "accountName": string,
  "type": enum(AccountType),
  "role": enum(AccountRole),
  "state": {
    object(AccountState)
  },
  "profilePhotoUrl": string,
  "accountNumber": string,
  "permissionLevel": enum(PermissionLevel),
  "organizationInfo": {
    object(OrganizationInfo)
  }
}

使用权

请记住,您必须在此处填写表格并请求访问此 api

授权

{
  "error": {
    "code": 401,
    "message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
    "status": "UNAUTHENTICATED"
  }
}

意味着您的请求必须经过身份验证才能使用此方法。未经拥有数据的用户许可,您不能访问私人用户数据。 Oauth 我建议您找到您选择的语言的客户端库,并查找有关如何使用 oauth2 进行身份验证的信息

于 2019-01-17T14:50:08.967 回答