I have successfully acquired an access_token with the `profile:me` and `game:view:ownership` scopes enabled using the OAuth flow with API key, but I don't know how to use this endpoint to check if a user owns my game. The documentation on the itch.io website doesn't seem to cover this endpoint:
game:view:ownership – Check if the user owns a specific game. Grants access to https://api.itch.io/games/:game_id/ownership. This endpoint only works for games owned by the OAuth application creator.
When I tried using the url with the correct `game_id` like so (https://api.itch.io/games/3014960/ownership), it gives me the following error:
{"errors":["this endpoint requires an OAuth application API key"]}
Does anyone know how to use this?