Really useful, thanks, bro.
Are you trying to access mql5.com through code, which is against the rules ?
Alain Verleyen # :
Are you trying to access mql5.com through code, which is against the rules ?
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

Vladislav Andruschenko #:
It was just a question, as I had not understood what you were trying to achieve, no worries.
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 ?
Integrating External Applications with MQL5 Community OAuth
- 2026.02.04
- www.mql5.com
Learn how to add “Sign in with MQL5” to your Android app using the OAuth 2.0 authorization code flow. The guide covers app registration, endpoints, redirect URI, Custom Tabs, deep-link handling, and a PHP backend that exchanges the code for an access token over HTTPS. You will authenticate real MQL5 users and access profile data such as rank and reputation.
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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.