I want to change my application code to send API requests through the new service gateway. What do I have to change?
All you have to do is change the domain part of any API requests your application makes from "apis.berkeley.edu" to "gateway.api.berkeley.edu" For example, the request "GET https://apis.berkeley.edu/sis/v2/students/61889?id-type=campus-uid"
should be changed to "GET https://gateway.api.berkeley.edu/sis/v2/students/61889?id-type=campus-uid"
. If you've set the host domain as a constant in your application code, this should be a snap!
Be sure to make this change in your pre-production test environment first and run tests that...