I had the same issue and I emailed them about it and this is what they said:
“Are you streaming
terrain into your app from assets.agi.com?
That service was turned off on Oct 1st so maybe that is causing the issue?
We’ve made several announcements over that last 9 months that it would be
deprecated 9/1/18 but then we extended it to 10/1/18.”
If you update to version 1.50, you’ll be able to use their new ion service without changing anything on your side (access tokens, code, etc.). The new service is free for personal use, but not for commercial use.
By default, Cesium connects to ion for both Bing Maps imagery and geocoding. The url you posted indicates Bing imagery (ion asset 2) is active. If you do not wish to use either of these and want to disable everything ion related, you need to pass options to the viewer widget:
var viewer = new Cesium.Viewer(‘cesiumContainer’, {
geocoder: false,
imageryProvider: false,
baseLayerPicker: false
});
Instead of false you can pass your own geocoder, imageryProvider or a custom selection of base layers for the picker; it depends on whether you are using these things in your application.