Hey Harikrishnan. Your "How do I..." question seems like a good fit for Stack Overflow where you are more likely to receive help for technical questions, this group being more suited to open-ended discussion.
Be sure to tag your question with one of the tags <https://cloud.google.com/support/docs/stackexchange> monitored by our community technical support team and post a link to your question here so other members can answer it. On Wednesday, June 14, 2017 at 9:15:13 AM UTC-4, Harikrishnan K wrote: > > > down vote > favorite > <https://stackoverflow.com/questions/44497022/implementing-batch-api-calls-in-google-appengine-with-java#> > > I am using Google AppEngine with Java. I want to implement batch API in my > project. > > Eg: Currently, I have these some API calls, which has to be called from > the client as separate requests: > > - GET http://localhost:8888/_ah/api/contents/v1/list/all/all/1 > - POST http://localhost:8888/_ah/api/user/v1/updateUser/1 > > I want to implement a batch API similar to this > > > POST http://localhost:8888/_ah/api/batch/v1/process{ > requests: [ > { > method: "POST", > url: "/_ah/api/user/v1/updateUser/1", > body: { > name: "Some test value" > } > }, > { > method: "GET", > url: "/_ah/api/contents/v1/list/all/all/1" > } > // and so on... > ]} > > > But I am not clear how to route /_ah/api/user/v1/updateUser/1 (and others) > to the actual API class from this batch API in the AppEngine server, with > appengine's built-in capabilities? > > Can anyone give an answer, please? > > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3d60df72-c83b-4414-ab2d-7c1ffbed0271%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
