An application returned a `200 OK` response with an `Unexpected token '<'` error in the browser after a GCP key rotation and Spring Cloud Gateway service update. The application failed to parse the response because the API was returning an HTML page instead of the expected JSON.
Browser console error:
```
Status: 200
Unexpected token '<'
Content-Type: text/html; charset=utf-8
Server: nginx/1.29.4
```
Spring Cloud Gateway 2.4.1
The Spring Cloud Gateway service instance was updated. This update caused the gateway route configuration for the application to lose its backend URI mapping.
The gateway route is missing or pointing to an incorrect URI instead of the correct app route.
cf routes <app-name>
cf unbind <app-name> <gateway>
cf bind-service <app-name> <gateway> -c '{ "routes": [ { "path": "/example/**" } ] }'
cf restage <app-name>