Heim >Backend-Entwicklung >PHP-Tutorial >android - 怎么用PHP开发API供其他客户端调用?

android - 怎么用PHP开发API供其他客户端调用?

WBOY
WBOYOriginal
2016-06-06 20:46:351025Durchsuche

需要将一个CMS类型的网站开发安卓版本的客户端。怎么写供安卓客户端调用的接口?

回复内容:

需要将一个CMS类型的网站开发安卓版本的客户端。怎么写供安卓客户端调用的接口?

接口开发,现在比较流行的方式就是RESTful架构
确立好开发接口的标准之后,遵循相关开发标准即可

参考文章 理解RESTful架构

可以用RESTFUL框架开发单独的api接口
目前支持restfull框架比较容易上手的有laravel
官方网站 http://laravel.com

一个 Rest 加 个 OAuth 授权、一般框架都能做到、Laravel Yii2

用web service就可以了

自己写webservice啊。简单点就是GET方法获取数据,向客户端返回json数据。POST的话,你写个post接口,接收到数据验证一下是否合法,合法就入库,向客户端返回json

<code>{"errorCode":0,"result":{"key":"value","key":"value"}} // 成功
{"errorCode":123,"result":"错误码信息"} // 错误
</code>

只要你发送和返回的数据,这些需要和客户端约定好,基本上啥问题。如果怕别人利用,基本的安全做法就是把参数加个密钥md5做个验签。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn