RESTful api可以基于EndPoint API构建。有一些工具可以帮助您简化工作:
Google App Engine应用程序的嵌入式服务器,无需额外的工作即可通过REST API公开您的数据模型。
https://pre.google.com/p/appengine-rest-
server/
另一个基于端点
通过扩展ndb.Model类和终结点库提供的功能,该库使您可以直接与API方法中的模型实体进行交互,而不必与ProtoRPC请求进行交互。例如,代替:
https://github.com/GoogleCloudPlatform/endpoints-proto-
datastore
我为端点编写了RESTFul api生成器。
# generate restful api in one lineBigDataLab = EndpointRestBuilder(GPCode).build( api_name="BigDataLab", name="bigdatalab", version="v1", description="My Little Api")
回购:https :
//github.com/Tagtoo/endpoints-proto-datastore-
rest
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)