Never ever post your Bearer token publically. Please revoke this key immeditely
You requested client_credentials, which as per the docs
Is an authorisation for your Application/Server/ClientID/Not a Person
As mentioned earlier, app access tokens are only for server-to-server API requests. The grant request below requires the client secret to acquire an app access token; this also should be done only as a server-to-server request, never in client code.
To follow up:
Authenticate your app and allow it to access resources that it owns. Since app access tokens are not associated with a user, they cannot be used with endpoints that require user authentication.
You requested an oAuth for your “application” and your “application” doesn’t have a bits program.
You need to do, OAuth Authorization Code Flow:
To get a User Authorization