logo

Are you need IT Support Engineer? Free Consultant

Effective from June 30th 2026 – XSUAA Deprecation …

  • By sujay
  • 14/06/2026
  • 25 Views

Effective June 30th, the Authorization and Trust Management (XSUAA) Service will deprecate the use of the HTTP GET method for access token retrieval via the /oauth/token endpoint.

Going forward, only the HTTP POST method will be supported, in alignment with OAuth 2.0 specification (RFC 6749). This change ensures standardized and secure handling of token requests across all environments.

What Is Changing?

Previously, some implementations used the GET method to request access tokens:

GET /oauth/token?grant_type=client_credentials&response_type=token
Authorization: Basic 

This approach is not compliant with RFC 6749 and is now being deprecated.

The correct and supported approach is to use the POST method

POST /oauth/token
Content-Type: application/x-www-form-urlencoded
Authorization: Basic 

grant_type=client_credentials

In VS Code – RestClient Extension

# @NAME login
POST {{host}}/oauth/token?grant_type=client_credentials&response_type=token
Content-Type: application/x-www-form-urlencoded
Authorization: Basic {{clientid}}:{{clientsecret}}

###
@accessToken = {{login.response.body.access_token}}

Impact

If any of your application:

  • Uses GET requests to /oauth/token
  • Passes parameters via query string

Then your implementation will stop working after June 30th

9998218580421052-7B5371E3-Ed79-4Af2-88Cb-6840163631A6-Image_Task_01Kv2E34H1Vn2Ps52Bzc3Szjs1_0.Jpg

Image source : Generated by SAP AI Core – Model Gemini Flash Lite

 

 

 

Source link

Leave a Reply

Your email address will not be published. Required fields are marked *