Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm starting to use cloud endpoints in my GAE project but have been running into issues with the api not updating on the server.

  • localhost:8888/_ah/api/explorer is ok.

But when I deploy, nothing changes.

  • myapp.appspot.com:8888/_ah/api/explorer is bad

Further investigation shows the url end points update example: https://myapp.appspot.com/_ah/api/myapp/v1/foo/list

But the loaded client api is still incorrect. example: gapi.client.load('myapp', 'v1', callback, url); gapi.client.myapp.foo.list();

If I changed the call from foo/list to foo/list2, the rest url would update, the api package would not.

share|improve this question
Did you regenerate the discovery document? – Linuxios Feb 24 at 2:11
Yup. The doc looked correct. And my api name change showed up, eventually. Took ~1.5 hours. – jrmerz Feb 24 at 6:53
1  
Endpoints has been very buggy for me at least. Not surprised that it wasn't working for you. – Linuxios Feb 24 at 14:56

2 Answers

I'll try to cover the two cases people could run into:

Client Side:

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.

Server Side (In Deployed Production App Engine App):

If you're having deployment issues, there are two places to look when debugging:

  • Check your Admin Logs (https://appengine.google.com/adminlogs?&app_id=s~YOUR-APP-ID) after deployment. After a successful deployment of your application code, you should see the message:

    Completed update of a new default version
    

    and shortly after that you should see:

    Successfully updated API configuration
    

    If you this message indicates the API configuration update failed, you should deploy again. If said error is persistent, you should notify us of a bug. If you don't see any message about your API configuration, you should check that the path /_ah/spi/.* is explicitly named in your routing config (app.yaml for Python, web.xml for Java).

  • Check your Application Logs (https://appengine.google.com/logs?&app_id=s~YOUR-APP-ID) after deployment. After the deployment finishes, Google's API infrastructure makes a request to /_ah/spi/BackendService.getApiConfigs in your application so that your API configuration (as JSON) can be registered with Google's API infrastructure and all the discovery-related configs can be created. If this request does not complete with a 200, then your API changes will not show up since Google's API infrastructure will have nothing to register.

  • If you are consistently getting a 302 redirect for requests to /_ah/spi/BackendService.getApiConfigs, it is because you (or your generated API config) have specified a "bns adapter" that uses http: as the protocol in your API root, but your web.xml (Java) or app.yaml (Python) is required that paths through /_ah/spi are secure. This will make requests using http: as the protocol be redirected (using 302) to the same page with https: as the protocol. This was discussed on the Trusted Tester forum before going to Experimental.

share|improve this answer
I develop with chrome. To be sure it wasn't a caching issue, I opened with Firefox as well as Safari, fresh loads. – jrmerz Feb 25 at 2:02
I'm somewhat perplexed by your question. You refer to developers.google.com/apis-explorer/?base=http://localhost:8888/…, which points at a local app and then say "But when I deploy, nothing changes". Do you mean that nothing changes in GAE production? – bossylobster Feb 25 at 22:21
1  
So locally (localhost:8888/_ah/api/explorer, which redirects to posted url) everything looks great. But when I deploy to app engine, myapp.appspot.com/_ah/api/explorer does not update for some time. – jrmerz Feb 26 at 4:38
1  
There should be a stacktrace from your failing code, can you post that in the question as well? Or even start a new question asking about the specific stacktrace? – bossylobster Feb 26 at 16:59
1  
@Animesh - I've edited the answer to remove the info about the 302. I feel it should be a separate question. Or if bossyLobster agrees, can edit it himself the way he wants the answer to be. The info you added should still be available in the Edit revisions of the post. – Tuxdude Mar 6 at 5:01
show 8 more comments

I noticed that if you upload your app for the first time without the following in your web.xml:

 <security-constraint>
        <web-resource-collection>
            <url-pattern>/_ah/spi/*</url-pattern>
        </web-resource-collection>
        <user-data-constraint>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>

Then your bns adapter will be set as http going forward. When I add the above afterwards, I get 302 http code on /_ah/spi/BackendService.getApiConfigs and the endpoints never update.

So now I have reverted to not use https on /_ah/spi and my endpoints are updating. I guess for those that see their endpoints not being updated revert back to the first configuration they had for ssl on /_ah/spi/.

Yaw.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.