Are you trying to access mql5.com through code, which is against the rules ?
What do you mean? This is the official MQL5 app.
Please log in to your personal account and look at the Applications section.
Where and what am I violating? Please stop mocking.
I want to receive official support from @MetaQuotes

What do you mean? This is the official MQL5 app.
Please log in to your personal account and look at the Applications section.
Where and what am I violating? Please stop mocking.
I want to receive official support from @MetaQuotes
I never tried myself, so I can't help much.
Maybe this article will help you, did you read it ?
- 2026.02.04
- www.mql5.com
Additional diagnostic information:
I have now tested the OAuth flow again with the official endpoints from the article:
Authorization endpoint:
https://www.mql5.com/en/oauth/login
Token endpoint:
https://www.mql5.com/api/oauth/access_token
User endpoint:
https://www.mql5.com/api/oauth/user_info
The authorization code is received successfully.
The token endpoint returns HTTP 200 and a valid-looking response containing:
-
access_token
-
refresh_token
-
expires_in
-
token_type: Bearer
Immediately after receiving this token, I call:
https://www.mql5.com/api/oauth/user_info
Result:
POST request returns HTTP 200 with:
{ "error": { "error": 103, "message": "Access token is invalid because the user is not authorized" } } GET request returns an HTML 404 page instead of API JSON.
I also tested scope=profile, but the result is the same.
Could MetaQuotes please confirm the exact required request format for /api/oauth/user_info?
Specifically:
-
Should user_info be called by GET or POST?
-
Should the token be sent as Authorization: Bearer <access_token> or as access_token in the POST body?
-
Is any scope required?
-
Does my OAuth application need additional permission to access user_info?
-
Is /api/oauth/user_info currently working correctly?
Please note: I am not scraping mql5.com. I am using the official OAuth application endpoints from the MQL5 account Applications section.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello,
I am experiencing an issue with MQL5.community OAuth. The authorization flow works correctly until the user_info request.
What works correctly
Token endpoint:
https://www.mql5.com/api/oauth/access_tokenProblem
After receiving a fresh access_token , the user info endpoint does not return user profile data.
User endpoint:
https://www.mql5.com/api/oauth/user_infoRequest methods tested
Results
GET requests return an HTML 404 page.
POST requests return:
{ "error": { "error": 103, "message": "Access token is invalid because the user is not authorized" } }The access token is fresh and is received immediately before calling user_info.
Question
Could you please confirm whether this endpoint is currently working?
https://www.mql5.com/api/oauth/user_infoAlso, what exact request method should be used to retrieve user profile data after receiving the access token?
Thank you.