Can Google Cloud Endpoints Be Hit Using Task Queues? -


i have app engine task queue tries call cloud endpoint, when see task queue fire off gets 404. verified endpoint configured post:

@apimethod(name = "sendemail", path = "sendemail", httpmethod = httpmethod.post) 

and queueing this:

taskoptions loptions = taskoptions.builder.withurl("/_ah/api/email/v1/sendemail"); 

i can hit endpoint using endpoint explorer, missing? thanks!

it's defaulting method try adding method post or making endspoints method get.

withurl("....").method(method.post) 

Comments

Popular posts from this blog

Using 'OR' and 'AND' in SQL Server -

c++ - NetBeans Remote Development with additional configuration -

visual studio - TFS will not accept changes I've made to a Java project -