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
Post a Comment