基于LeanCloud Restful API的Retrofit编程
BaaS提供商LeanCloud提供了Restful API,没有提供Retrofit使用教程。
- 注册用户
注册API设计:
1 | curl -X POST \ |
登录API设计:
1 | curl -X POST \ |
Retrofit接口:
1 | public interface LeanCloudRetrofitService { |
注册代码:
1 | String username = ""; |
登录代码:
1 | String username = ""; |