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

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -