ecstore 调用openapi
Posted limonyun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ecstore 调用openapi相关的知识,希望对你有一定的参考价值。
//小技巧: //1. 在系统中可以直接用工具类base_httpclient 来实现. //2. openapi的调用api可以用kernel::openapi_url()生成.
$http = new base_httpclient; $url = kernel::openapi_url(‘openapi.queue‘,‘worker‘,array(‘task_id‘=>$task_id)); $http->post($url,$_POST);
//base_httpclient下面含有curl的方法
function get($url,$headers=null,$callback=null,$ping_only=false){ return $this->netcore->action(__FUNCTION__,$url,$headers,$callback,null,$ping_only); } function post($url,$data,$headers=null,$callback=null,$ping_only=false){ return $this->netcore->action(__FUNCTION__,$url,$headers,$callback,$data,$ping_only); }
以上是关于ecstore 调用openapi的主要内容,如果未能解决你的问题,请参考以下文章