java - Sending images as a base64 string to a google cloud endpoint from cms -


i trying send image cms google cloud endpoint stored in google datastore. image converted base64 string send endpoint. works fine when i'm sending android application when try sending cms throws error. i've had change api method because other api method uses custom object java , cms using javascript. ways have found send image endpoint either string, text or blob.

this part of method on cms sends image endpoint

var testapi = gapi.client.itemapi; var testapimethod = testapi.storeitemfromjs({ "id" : id, "name" : name, "description" : description, "status" : status, "contents" : contents, "resource": {         "image": image }}); testapimethod.execute(); 

this current api method, can see it's using text image:

@apimethod(name = "storeitemfromjs", path="itembean/store/js") public entity storeitemfromjs(@named("id")string id, @named("name") string name,                               @named("description") string description,                               @named("status") string status,                               @named("contents") string contents, text image) {     datastoreservice datastoreservice = datastoreservicefactory.getdatastoreservice();     transaction txn = datastoreservice.begintransaction();     entity entity;     try {         //key key = keyfactory.createkey("itemlist", "itemrecord");         entity = new entity("itembean", id);         entity.setproperty("id", id);         entity.setproperty("name", name);         entity.setproperty("description", description);         entity.setproperty("status", status);         entity.setproperty("contents", contents);          byte[] bytes = base64.decodebase64(image.getvalue());          blob imageblob = new blob(bytes);          entity.setproperty("image", imageblob);         datastoreservice.put(entity);         txn.commit();     } {         if (txn.isactive()) {             txn.rollback();         }     }     return entity; } 

this gets 503(ok) error when try run it.

when try using blob throws error when try rebuild project , can't find way resolve it. wanted use blob because that's how it's sent from application, don't mind how gets sent long can retrieved , displayed later. error:

error:execution failed task ':backend:appengineendpointsgetclientlibs'.

there error running endpoints command get-client-lib: 400 bad request {"error": {"message": "bad request", "code": 400, "errors": [{"message": "api exception", "debug_info": "cannot decode json schema for: {u'parametername': u'resource'}"}]}}

when tried using string works fine if string being sent short enough (after experimentation found has 2280 characters or less) otherwise throws 400 error. images being sent longer 2280 isn't going work.

update:

from saiyr's suggestion changed code , seems work:

updated endpoint:

@apimethod(name = "storeitemfromjs", path="itembean/store/js")// stores item passed in on datastore public entity storeitemfromjs(@named("id")string id, @named("name") string name,                               @named("description") string description,                               @named("status") string status,                               @named("contents") string contents, request image) 

request class:

public class request { public blob image; } 

and changes javascript:

var testapi = gapi.client.itemapi; var testapimethod = testapi.storeitemfromjs({ "id" : id, "name" : name, "description" : description, "status" : status, "contents" : contents, "image" : image }); testapimethod.execute(); 

any appreciated. see right option sending images text have no idea 503 error is, aside being server-side.

thanks tom

i believe (but can't sure, because there not enough information) there bug in api config generation. text isn't allowed resource in endpoints. resources must json objects, not primitives. suggest making class request { blob image; } (expand standard java like) , shouldn't need create new blob. change resource take request type:

@apimethod(name = "storeitemfromjs", path="itembean/store/js") public entity storeitemfromjs(..., request request) 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -