About the authentication of MindMeister API, there are three types:
- API Keys
- OAuth 2.0 Apps
- Personal Access tokens
I want to use the third one, it explains the next:
Personal access tokens
Personal access tokens enable direct access to your MindMeister account via the API without the need of an OAuth 2.0 App or and an API key.
I created one and I use it to perform my API calls, but I get error 99:
{"rsp":{"stat":"fail","err":{"code":"99","msg":"The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions."}}}
I tried test this method 'mm.auth.checkToken'
Here is the documentation MindMeister API Developers, but there is nothing related to the "Personal Access Tokens".
My request URL looks like this:
https://www.mindmeister.com/services/rest?api_key=<api_key_code>&auth_token=<personal_token>&method=mm.auth.checkToken&response_format=json&api_sig=<md5 hash of the sign>
I don't know how to use this API feature, so I want to know this, please help me.