XF 2.3 API Endpoints

dvduval

Active member
I receive a 404 error when trying to access the API endpoint /api/users/me.

Authorization: I have confirmed that the Authorization headers are being sent correctly. When accessing the endpoint directly, the server returns the following response:

endpoint_not_found
Requested endpoint cannot be found.invalid_action

Endpoints:
  • Authorization endpoint: mysite/oauth2/authorize
  • Token endpoint: mysite/api/oauth2/token
  • Token revocation endpoint: mysite/api/oauth2/revoke
  • Redirect URI: mysite/music/oauth_callback.php
  • API Key: I am using a super-user API key with all scopes enabled, including user:read.
I have also verified that other API endpoints (like /api/threads) seem to be accessible and respond correctly, making it appear that the issue may be specific to user-related endpoints.

Could you please assist in identifying the cause of this issue?
 
The correct endpoint is simply /api/me/

You can see all of the endpoints here:

 
Back
Top Bottom