Eventbrite API:您请求的 user_id 不存在 - 使用 OAuth 令牌

Eventbrite API: The user_id you requested does not exist - with OAuth token

有谁知道为什么在使用有效令牌请求 /me/owned_events 时,您可能会得到 "The user_id you requested does not exist".

在我看来,这似乎是 Evenbrite 帐户的问题 - 但我找不到有效的方法来为 API 提出 Eventbrite 的支持票,所以希望有人以前见过这个。

https://www.eventbriteapi.com/v3/users/me/owned_events/?token=XXXXXXXXXXXXXX

{ "status_code": 404, "error_description": "The user_id you requested does not exist.", "error": "NOT_FOUND" }

您尝试访问的端点正在被弃用。您将希望切换到使用较新的 "organizations" 端点。

获取/v3/organizations/organization_id/events

这将 return user/organization 拥有的所有活动。

如果您不确定如何获取组织 ID,可以在此处找到。 https://www.eventbrite.com/platform/api#/reference/organization/list/list-your-organizations

我希望这能帮助你前进! 最好!