> 백엔드 개발 > PHP 튜토리얼 > 我用curl请求接口获取返回值,但是不成功,大神给看看怎么调取?

我用curl请求接口获取返回值,但是不成功,大神给看看怎么调取?

WBOY
풀어 주다: 2016-06-23 13:17:32
원래의
1948명이 탐색했습니다.

接口地址 http://mp.vservice.com.cn/service/OutWebService?wsdl

接口调用方
callService(String serviceName,String servId,String secretKey,String xmlInfo)

参数名称 传值
serviceName:OAuth
servId          :服务号id 
secretKey  :服务号秘钥 
xmlInfo :
     
       333
       weixin/yixin
       info/base
       uri
     



这个是文档内容,服务号id和密钥就不公布,大神们给指导下怎么用curl获取返回值?


回复讨论(解决方案)

怎么没有人来回答

参考下http://blog.csdn.net/u011619326/article/details/38342421

用soap,不是用curl。
$servId = 'xxx';
$secretKey = 'xxx';
這兩處你改成你的賬號試試

<?phptry{      $client = new SOAPClient('http://mp.vservice.com.cn/service/OutWebService?wsdl');      $servicename = 'OAuth';    $servId = 'xxx';    $secretKey = 'xxx';    $xmlInfo = '<?xml version="1.0" encoding="UTF-8"?><BaseInfo><servId>333</servId><platform>weixin/yixin</platform><type>info/base</type><redirect_uri>uri</redirect_uri></BaseInfo>';    $result = $client->callService($servicename, $servId, $secretKey, $xmlInfo);    var_dump($result);}catch(SOAPFault $e){      echo $e->getMessage();  }  ?>
로그인 후 복사
로그인 후 복사
로그인 후 복사

这个明明是webservice的调用,你为什么用curl

用SOAP获取。

用soap,不是用curl。
$servId = 'xxx';
$secretKey = 'xxx';
這兩處你改成你的賬號試試

<?phptry{      $client = new SOAPClient('http://mp.vservice.com.cn/service/OutWebService?wsdl');      $servicename = 'OAuth';    $servId = 'xxx';    $secretKey = 'xxx';    $xmlInfo = '<?xml version="1.0" encoding="UTF-8"?><BaseInfo><servId>333</servId><platform>weixin/yixin</platform><type>info/base</type><redirect_uri>uri</redirect_uri></BaseInfo>';    $result = $client->callService($servicename, $servId, $secretKey, $xmlInfo);    var_dump($result);}catch(SOAPFault $e){      echo $e->getMessage();  }  ?>
로그인 후 복사
로그인 후 복사
로그인 후 복사



非常感谢你,但是我运行之后提示 Not enough message parts were received for the operation.
不知该如何解决?


用soap,不是用curl。
$servId = 'xxx';
$secretKey = 'xxx';
這兩處你改成你的賬號試試

<?phptry{      $client = new SOAPClient('http://mp.vservice.com.cn/service/OutWebService?wsdl');      $servicename = 'OAuth';    $servId = 'xxx';    $secretKey = 'xxx';    $xmlInfo = '<?xml version="1.0" encoding="UTF-8"?><BaseInfo><servId>333</servId><platform>weixin/yixin</platform><type>info/base</type><redirect_uri>uri</redirect_uri></BaseInfo>';    $result = $client->callService($servicename, $servId, $secretKey, $xmlInfo);    var_dump($result);}catch(SOAPFault $e){      echo $e->getMessage();  }  ?>
로그인 후 복사
로그인 후 복사
로그인 후 복사



非常感谢你,但是我运行之后提示 Not enough message parts were received for the operation.
不知该如何解决?



我是按你提供的参数做的,看了wsdl文档发现少了些参数









按照我这个肯定好用,求分。

try {			$xml='xml数据';			//地址			$soap = new SoapClient ( "http://mp.vservice.com.cn/service/OutWebService?WSDL" );			//请求参数 根据你的参数调整			$param = array ('userName' => '*****', 'pwd' => '****', 'businessType' => 'SaleHouses', 'xmlContent' => $xml );			//调用服务器端的方法 根据你的方法调整 我这里Import是方法名称			$result = $soap->__soapCall ( 'Import', array ('parameters' => $param ) );			print_r ( $result );		} catch ( SoapFault $e ) {			echo $e->getMessage ();		} catch ( Exception $E ) {			echo $E->getMessage ();		}
로그인 후 복사


参考下http://blog.csdn.net/u011619326/article/details/38342421


很感谢
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿