如何向Cloud Endpoint方法添加说明?
通过观察,我发现API浏览器使用docstring方法进行描述。
在某些情况下,我们使用装饰器来阻止从API资源管理器中正确解析doscring beeing。
代码示例:
@endpoints.method(ScoreRequestMessage, ScoreResponseMessage,
path='scores', http_method='POST',
name='scores.insert')
@do_some_checks
def scores_insert(self, request):
"""
Exposes an API endpoint to insert a score for the current user.
"""
entity = Score.put_from_message(request)
return entity.to_message()
有没有办法为API资源管理器提供端点方法描述?