Lars Christoffersen
Lars Christoffersen

Reputation: 1739

Deleting and changing google appengine endpoints

I have created a small project in Google apengine and like it apart from one thing: It seems virtually impossible to delete or change an endpoint, once it has been made. The API often stays the same, regardless of code changes in the java endpoint classes. I tried to delete the complete API, but that is not possible either. Is there any way to do this?

Upvotes: 3

Views: 523

Answers (1)

bossylobster
bossylobster

Reputation: 10163

RE: Deletion

it's not currently supported, but we're working on it.

RE: API Changes

The Google APIs Explorer web app aggressively caches, so you'll need to clear your cache or force a refresh when you update your API server side to see the changes in the client.

Upvotes: 2

Related Questions