Skip to main content
Version: 4.x

Exchange access_token for WordPress JWT

Overview

This endpoint accepts a Facebook access_token and returns a WordPress JWT. Use this as the final step of the Facebook OAuth flow to authenticate the user in WordPress.

Enable Exchange Facebook access_token for a WordPress JWT in Settings → Simple JWT Login → Integrations → OAuth → Facebook.


Endpoint

Method: POST

Endpoint: /simple-jwt-login/v1/oauth/token

ParameterTypeDescription
providerrequired stringSet to facebook
access_tokenrequired stringThe access_token from your Facebook OAuth flow

Request Example

curl -X POST "https://your-site.com/wp-json/simple-jwt-login/v1/oauth/token" \
-H "Content-Type: application/json" \
-d '{"provider":"facebook","access_token":"YOUR_FACEBOOK_ACCESS_TOKEN"}'

Response Examples

Success

{
"success": true,
"data": {
"jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
}

Error

{
"success": false,
"data": {
"message": "The code or jwt parameter is missing from request.",
"errorCode": 71
}
}